@@ -828,20 +828,20 @@ exclamation mark is used to denote a field that uses a Non-Null type like this:
828
828
** Result Coercion**
829
829
830
830
In all of the above result coercion, {null} was considered a valid value.
831
- To coerce the result of a Non Null type, the coercion of the wrapped type
831
+ To coerce the result of a Non- Null type, the coercion of the wrapped type
832
832
should be performed. If that result was not {null}, then the result of coercing
833
- the Non Null type is that result. If that result was {null}, then a field error
833
+ the Non- Null type is that result. If that result was {null}, then a field error
834
834
must be raised.
835
835
836
836
** Input Coercion**
837
837
838
- If the argument of a Non Null type is not provided, a query error must
838
+ If the argument of a Non- Null type is not provided, a query error must
839
839
be raised.
840
840
841
- If an argument of a Non Null type is provided with a literal value, it is
841
+ If an argument of a Non- Null type is provided with a literal value, it is
842
842
coerced using the input coercion for the wrapped type.
843
843
844
- If the argument of a Non Null is provided with a variable, a query error must be
844
+ If the argument of a Non- Null is provided with a variable, a query error must be
845
845
raised if the runtime provided value is not provided or is {null} in the
846
846
provided representation (usually JSON). Otherwise, the coerced value is the
847
847
result of using the input coercion for the wrapped type.
0 commit comments