@@ -21,7 +21,7 @@ point in time.
21
21
22
22
** Type system evolution**
23
23
24
- As GraphQL type system schema evolve over time by adding new types and new
24
+ As GraphQL type system schema evolves over time by adding new types and new
25
25
fields, it is possible that a request which was previously valid could later
26
26
become invalid. Any change that can cause a previously valid request to become
27
27
invalid is considered a * breaking change* . GraphQL services and schema
@@ -694,7 +694,7 @@ extend type Query {
694
694
}
695
695
```
696
696
697
- Order does not matter in arguments . Therefore both the following example are valid .
697
+ Order does not matter in arguments . Therefore both the following examples are valid .
698
698
699
699
```graphql example
700
700
fragment multipleArgs on Arguments {
@@ -1245,7 +1245,7 @@ fragment dogOrHumanFragment on DogOrHuman {
1245
1245
}
1246
1246
```
1247
1247
1248
- is consider valid because {Dog} implements interface {Pet} and is a
1248
+ is considered valid because {Dog} implements interface {Pet} and is a
1249
1249
member of {DogOrHuman}.
1250
1250
1251
1251
However
@@ -1920,7 +1920,7 @@ query intCannotGoIntoBoolean($intArg: Int) {
1920
1920
}
1921
1921
```
1922
1922
1923
- ${intArg} typed as {Int} cannot be used as a argument to {booleanArg}, typed as {Boolean}.
1923
+ ${intArg} typed as {Int} cannot be used as an argument to {booleanArg}, typed as {Boolean}.
1924
1924
1925
1925
List cardinality must also be the same. For example, lists cannot be passed into singular
1926
1926
values.
@@ -1992,7 +1992,7 @@ In the example below, an optional variable `$booleanArg` is allowed to be used
1992
1992
in the non-null argument (` nonNullBooleanArg ` ) because the variable provides
1993
1993
a default value in the query. This behavior is explicitly supported for
1994
1994
compatibility with earlier editions of this specification. GraphQL authoring
1995
- tools may wish to report this is a warning with the suggestion to replace
1995
+ tools may wish to report this as a warning with the suggestion to replace
1996
1996
` Boolean ` with ` Boolean! ` to avoid ambiguity.
1997
1997
1998
1998
``` graphql example
@@ -2003,5 +2003,5 @@ query booleanArgQueryWithDefault($booleanArg: Boolean = true) {
2003
2003
}
2004
2004
```
2005
2005
2006
- Note: The value {null} could still be provided to a such a variable at runtime.
2006
+ Note: The value {null} could still be provided to such a variable at runtime.
2007
2007
A non-null argument must produce a field error if provided a {null} value.
0 commit comments