graphql-engine/server/tests-py/queries/graphql_query/bigquery/select_query_batching.yaml
Kirill Zaborsky 960cf2d954 Use 'hasura' as dataset in python test to unify it with hspec
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/3636
GitOrigin-RevId: f4114fded09cbdd9875488610c635537478e4ab5
2022-02-14 06:23:07 +00:00

28 lines
481 B
YAML

description: GraphQL query to test batching in the style of Apollo
url: /v1/graphql
status: 200
response:
- data:
hasura_article:
- id: '1'
- id: '2'
- id: '3'
- id: '4'
- data:
hasura_author:
- id: '1'
- id: '2'
query:
- query: |
query {
hasura_article (order_by: {id: asc}) {
id
}
}
- query: |
query {
hasura_author (order_by: {id: asc}) {
id
}
}