graphql-engine/server/tests-py/queries/graphql_query/basic/nodes_aggregates_mssql.yaml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
748 B
YAML
Raw Normal View History

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
}
}
}