graphql-engine/server/tests-py/queries/remote_schemas/remote_relationships/regression_7172.yaml
Auke Booij 88aa42a986 server: Add regression tests for hasura/graphql-engine#7172
In hasura/graphql-engine#7172, an issue was found where under certain conditions a JSON field from Postgres would be parsed as a GraphQL input object, which is not possible in general, and also unnecessary. Luckily, this was already fixed by the time `v2.0.6` got around, presumably thanks to 4a83bb1834. This adds a regression test.

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

GitOrigin-RevId: 1ded1456f6b89726e08f77cf3383ad88c04de451
2021-08-25 21:06:09 +00:00

21 lines
325 B
YAML

description: Regression test for hasura/graphql-engine#7172
url: /v1/graphql
status: 200
response:
data:
regression_7172:
- features:
"Start Color": 44
project:
id: 1
query:
query: |
query {
regression_7172 {
features
project {
id
}
}
}