mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 21:12:09 +03:00
960cf2d954
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/3636 GitOrigin-RevId: f4114fded09cbdd9875488610c635537478e4ab5
28 lines
481 B
YAML
28 lines
481 B
YAML
description: GraphQL query to test batching in the style of Apollo
|
|
url: /v1/graphql
|
|
status: 200
|
|
response:
|
|
- data:
|
|
hasura_article:
|
|
- id: '1'
|
|
- id: '2'
|
|
- id: '3'
|
|
- id: '4'
|
|
- data:
|
|
hasura_author:
|
|
- id: '1'
|
|
- id: '2'
|
|
query:
|
|
- query: |
|
|
query {
|
|
hasura_article (order_by: {id: asc}) {
|
|
id
|
|
}
|
|
}
|
|
- query: |
|
|
query {
|
|
hasura_author (order_by: {id: asc}) {
|
|
id
|
|
}
|
|
}
|