graphql-engine/server/tests-py/queries/graphql_query/bigquery/select_query_batching.yaml
2021-10-12 17:59:44 +00:00

27 lines
485 B
YAML

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