graphql-engine/server/tests-py/queries/graphql_query/basic/select_query_batching.yaml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
367 B
YAML
Raw Normal View History

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
}
}