graphql-engine/server/tests-py/queries/graphql_query/basic/nodes_aggregates_mssql.yaml
Abby Sassel 745ff91dcd server/docs: Add reference in test to its related issue
I got sad that I didn't write a line of code (or...comments) today, so here we are 😅 also [I said I would](https://github.com/hasura/graphql-engine/issues/7181#issuecomment-877143240).

FYI @aniketd this is our convention for linking bug fixes to issues

https://github.com/hasura/graphql-engine-mono/pull/1777

GitOrigin-RevId: 11ee6cc52903c074dc3b6fa8b8c3636cca94174d
2021-07-12 18:59:50 +00:00

39 lines
720 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: 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
}
}
}