mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 09:22:43 +03:00
88aa42a986
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
21 lines
325 B
YAML
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
|
|
}
|
|
}
|
|
}
|