graphql-engine/server/tests-py/queries/graphql_query/bigquery/select_query_batching.yaml
Chris Done 53fc5617cf Feature/bigquery python tests
Co-authored-by: Aniket Deshpande <922486+aniketd@users.noreply.github.com>
GitOrigin-RevId: c425f84f1c9b8e38ebbfa509b6fa9298e023f386
2021-04-22 11:32:55 +00:00

27 lines
465 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'
- 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
}
}