mirror of
https://github.com/zhigang1992/graphql-engine.git
synced 2026-06-15 18:17:53 +08: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
|
|
}
|
|
}
|