mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 18:42:30 +03:00
26 lines
367 B
YAML
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
|
|
}
|
|
}
|