mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 18:42:30 +03:00
20 lines
454 B
YAML
20 lines
454 B
YAML
|
description: Passing null value for non nullable type
|
||
|
url: /v1alpha1/graphql
|
||
|
status: 400
|
||
|
response:
|
||
|
errors:
|
||
|
- extensions:
|
||
|
path: "$.selectionSet.update_author.args.where"
|
||
|
code: "validation-failed"
|
||
|
message: "null value found for non-nullable type: author_bool_exp!"
|
||
|
query:
|
||
|
query: |
|
||
|
mutation update_author {
|
||
|
update_author(where: null _set: {name: ""}) {
|
||
|
returning {
|
||
|
id
|
||
|
name
|
||
|
}
|
||
|
}
|
||
|
}
|