mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 20:41:49 +03:00
a9e3a1b4bd
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/2495 GitOrigin-RevId: ef250a0796200be6b75363b4275eb8a7ae780154
29 lines
690 B
YAML
29 lines
690 B
YAML
- description: Check that global limits apply
|
|
url: /v1/graphql
|
|
status: 200
|
|
response:
|
|
data:
|
|
hasura_test_LimitedAlbum:
|
|
- album_self_id: '2000'
|
|
query:
|
|
query: |
|
|
query MyQuery {hasura_test_LimitedAlbum(limit: 5, order_by: {album_self_id: asc}) {album_self_id}}
|
|
|
|
- description: Check that global limits apply for nodes
|
|
url: /v1/graphql
|
|
status: 200
|
|
response:
|
|
data:
|
|
hasura_test_LimitedAlbum_aggregate:
|
|
nodes:
|
|
- album_self_id: '2000'
|
|
query:
|
|
query: |
|
|
query MyQuery {
|
|
hasura_test_LimitedAlbum_aggregate(order_by: {album_self_id: asc}) {
|
|
nodes {
|
|
album_self_id
|
|
}
|
|
}
|
|
}
|