graphql-engine/server/tests-py/queries/graphql_query/basic/select_query_batching.yaml
2019-12-20 10:04:02 -06:00

26 lines
367 B
YAML

description: GraphQL query to test batching in the style of Apollo
url: /v1/graphql
status: 200
response:
- data:
user:
- id: '1'
- id: '2'
- data:
author:
- id: 1
- id: 2
query:
- query: |
query {
user {
id
}
}
- query: |
query {
author {
id
}
}