@@ -124,7 +124,7 @@ these names must adhere to the behavior described below.
124
124
125
125
#### Int
126
126
127
- The Int scalar type represents a signed 32-bit numeric non-fractional values .
127
+ The Int scalar type represents a signed 32-bit numeric non-fractional value .
128
128
Response formats that support a 32-bit integer or a number type should use
129
129
that type to represent this scalar.
130
130
@@ -212,7 +212,7 @@ other input values must raise a query error indicating an incorrect type.
212
212
#### ID
213
213
214
214
The ID scalar type represents a unique identifier, often used to refetch an
215
- object or as key for a cache. The ID type is serialized in the same way as
215
+ object or as the key for a cache. The ID type is serialized in the same way as
216
216
a ` String ` ; however, it is not intended to be human-readable. While it is
217
217
often numeric, it should always serialize as a ` String ` .
218
218
@@ -256,7 +256,7 @@ type Person {
256
256
```
257
257
258
258
Where ` name ` is a field that will yield a ` String ` value, and ` age ` is a field
259
- that will yield an ` Int ` value, and ` picture ` a field that will yield a
259
+ that will yield an ` Int ` value, and ` picture ` is a field that will yield a
260
260
` Url ` value.
261
261
262
262
A query of an object value must select at least one field. This selection of
@@ -537,7 +537,7 @@ of rules must be adhered to by every Object type in a GraphQL schema.
537
537
### Interfaces
538
538
539
539
GraphQL Interfaces represent a list of named fields and their arguments. GraphQL
540
- object can then implement an interface, which guarantees that they will
540
+ objects can then implement an interface, which guarantees that they will
541
541
contain the specified fields.
542
542
543
543
Fields on a GraphQL interface have the same rules as fields on a GraphQL object;
@@ -717,7 +717,7 @@ Unions are never valid inputs.
717
717
718
718
Union types have the potential to be invalid if incorrectly defined.
719
719
720
- 1 . The member types of an Union type must all be Object base types;
720
+ 1 . The member types of a Union type must all be Object base types;
721
721
Scalar, Interface and Union types may not be member types of a Union.
722
722
Similarly, wrapping types may not be member types of a Union.
723
723
2 . A Union type must define one or more member types.
@@ -827,7 +827,7 @@ exclamation mark is used to denote a field that uses a Non-Null type like this:
827
827
828
828
** Result Coercion**
829
829
830
- In all of the above result coercion , {null} was considered a valid value.
830
+ In all of the above result coercions , {null} was considered a valid value.
831
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
833
the Non-Null type is that result. If that result was {null}, then a field error
0 commit comments