graphql-engine/server/tests-py/queries/graphql_query/basic/nodes_aggregates_mssql.yaml
Aniket Deshpande 66f09eeaab MSSQL nodes aggregates & inherited roles
https://github.com/hasura/graphql-engine-mono/pull/1293

Co-authored-by: Chris Done <11019+chrisdone@users.noreply.github.com>
Co-authored-by: Abby Sassel <3883855+sassela@users.noreply.github.com>
GitOrigin-RevId: 776402dbbaf3d8166a62b1aaaf6abc7e584b3eb2
2021-07-08 20:50:09 +00:00

39 lines
637 B
YAML

description: Simple GraphQL object query on author, excercising multiple operations
url: /v1/graphql
status: 200
response:
data:
person_aggregate:
welp:
count: 4
sum: 10
min: 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
}
}
}