mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 20:41:49 +03:00
960cf2d954
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/3636 GitOrigin-RevId: f4114fded09cbdd9875488610c635537478e4ab5
29 lines
670 B
YAML
29 lines
670 B
YAML
- description: Check that global limits apply
|
|
url: /v1/graphql
|
|
status: 200
|
|
response:
|
|
data:
|
|
hasura_LimitedAlbum:
|
|
- album_self_id: '2000'
|
|
query:
|
|
query: |
|
|
query MyQuery {hasura_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_LimitedAlbum_aggregate:
|
|
nodes:
|
|
- album_self_id: '2000'
|
|
query:
|
|
query: |
|
|
query MyQuery {
|
|
hasura_LimitedAlbum_aggregate(order_by: {album_self_id: asc}) {
|
|
nodes {
|
|
album_self_id
|
|
}
|
|
}
|
|
}
|