Skip to content

Commit 1473f78

Browse files
committed
further clarify designator semantics
1 parent f392add commit 1473f78

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

spec/Section 2 -- Language.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,9 @@ Nullability :
524524
Fields can have their nullability designated with either a `!` to indicate that a
525525
field should be `Non-Nullable` or a `?` to indicate that a field should be
526526
`Nullable`. These designators override the nullability set on a field by the schema
527-
for the operation where they're being used.
527+
for the operation where they're being used. For example, a field marked with `!` in
528+
a query will be treated identically to a field marked with `!` in the schema for the
529+
purposes of validation and execution.
528530

529531
In this example, we can indicate that a `user`'s `name` that could possibly be
530532
`null`, should not be `null`:

0 commit comments

Comments
 (0)