mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-22 06:51:32 +03:00
a9e3a1b4bd
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/2495 GitOrigin-RevId: ef250a0796200be6b75363b4275eb8a7ae780154
27 lines
485 B
YAML
27 lines
485 B
YAML
description: GraphQL query to test batching in the style of Apollo
|
|
url: /v1/graphql
|
|
status: 200
|
|
response:
|
|
- data:
|
|
hasura_test_article:
|
|
- id: '1'
|
|
- id: '2'
|
|
- id: '3'
|
|
- data:
|
|
hasura_test_author:
|
|
- id: '1'
|
|
- id: '2'
|
|
query:
|
|
- query: |
|
|
query {
|
|
hasura_test_article (order_by: {id: asc}) {
|
|
id
|
|
}
|
|
}
|
|
- query: |
|
|
query {
|
|
hasura_test_author (order_by: {id: asc}) {
|
|
id
|
|
}
|
|
}
|