2021-06-25 16:35:39 +03:00
|
|
|
- description: Check that global limits apply
|
|
|
|
url: /v1/graphql
|
|
|
|
status: 200
|
|
|
|
response:
|
|
|
|
data:
|
2022-02-14 09:22:11 +03:00
|
|
|
hasura_LimitedAlbum:
|
2021-06-25 16:35:39 +03:00
|
|
|
- album_self_id: '2000'
|
|
|
|
query:
|
|
|
|
query: |
|
2022-02-14 09:22:11 +03:00
|
|
|
query MyQuery {hasura_LimitedAlbum(limit: 5, order_by: {album_self_id: asc}) {album_self_id}}
|
2021-06-25 16:35:39 +03:00
|
|
|
|
|
|
|
- description: Check that global limits apply for nodes
|
|
|
|
url: /v1/graphql
|
|
|
|
status: 200
|
|
|
|
response:
|
|
|
|
data:
|
2022-02-14 09:22:11 +03:00
|
|
|
hasura_LimitedAlbum_aggregate:
|
2021-06-25 16:35:39 +03:00
|
|
|
nodes:
|
|
|
|
- album_self_id: '2000'
|
|
|
|
query:
|
|
|
|
query: |
|
|
|
|
query MyQuery {
|
2022-02-14 09:22:11 +03:00
|
|
|
hasura_LimitedAlbum_aggregate(order_by: {album_self_id: asc}) {
|
2021-06-25 16:35:39 +03:00
|
|
|
nodes {
|
|
|
|
album_self_id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|