We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97ccdd3 commit 7df9360Copy full SHA for 7df9360
spec/Section 2 -- Language.md
@@ -525,7 +525,9 @@ Nullability :
525
Fields can have their nullability designated with either a `!` to indicate that a
526
field should be `Non-Nullable` or a `?` to indicate that a field should be
527
`Nullable`. These designators override the nullability set on a field by the schema
528
-for the operation where they're being used.
+for the operation where they're being used. For example, a field marked with `!` in
529
+a query will be treated identically to a field marked with `!` in the schema for the
530
+purposes of validation and execution.
531
532
In this example, we can indicate that a `user`'s `name` that could possibly be
533
`null`, should not be `null`:
0 commit comments