mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
53fc5617cf
Co-authored-by: Aniket Deshpande <922486+aniketd@users.noreply.github.com> GitOrigin-RevId: c425f84f1c9b8e38ebbfa509b6fa9298e023f386
27 lines
465 B
YAML
27 lines
465 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'
|
|
- 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
|
|
}
|
|
}
|