mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 01:44:03 +03:00
61663ec901
https://github.com/hasura/graphql-engine-mono/pull/1930 GitOrigin-RevId: f14df470ffa298c18e006c522d6355298041ae8e
41 lines
748 B
YAML
41 lines
748 B
YAML
description: Simple GraphQL object query on author, exercising multiple operations. Test case for bug reported at https://github.com/hasura/graphql-engine/issues/7181
|
|
url: /v1/graphql
|
|
status: 200
|
|
response:
|
|
data:
|
|
person_aggregate:
|
|
welp:
|
|
count: 4
|
|
sum:
|
|
id: 10
|
|
min:
|
|
id: 1
|
|
blah:
|
|
- id: 1
|
|
name: John\
|
|
- id: 2
|
|
name: ' Clarke '
|
|
- id: 3
|
|
name: ' clarke '
|
|
- id: 4
|
|
name: null
|
|
query:
|
|
query: |
|
|
query {
|
|
person_aggregate {
|
|
welp: aggregate {
|
|
count
|
|
sum {
|
|
id
|
|
}
|
|
min {
|
|
id
|
|
}
|
|
}
|
|
blah: nodes {
|
|
id
|
|
name
|
|
}
|
|
}
|
|
}
|