File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1486,23 +1486,23 @@ If the value provided to the Non-Null type is provided with a literal value
1486
1486
other than {null }, or a Non -Null variable value , it is coerced using the input
1487
1487
coercion for the wrapped type .
1488
1488
1489
- Example : A non -null argument cannot be omitted .
1489
+ A non -null argument cannot be omitted :
1490
1490
1491
1491
```graphql counter -example
1492
1492
{
1493
1493
fieldWithNonNullArg
1494
1494
}
1495
1495
```
1496
1496
1497
- Example: The value {null} cannot be provided to a non-null argument.
1497
+ The value {null} cannot be provided to a non-null argument:
1498
1498
1499
1499
``` graphql counter-example
1500
1500
{
1501
1501
fieldWithNonNullArg (nonNullArg : null )
1502
1502
}
1503
1503
```
1504
1504
1505
- Example: A variable of a nullable type cannot be provided to a non-null argument.
1505
+ A variable of a nullable type cannot be provided to a non-null argument:
1506
1506
1507
1507
``` graphql example
1508
1508
query withNullableVariable ($var : String ) {
You can’t perform that action at this time.
0 commit comments