@@ -832,14 +832,14 @@ IsValidImplementation(type, implementedType):
832
832
defined in {implementedType}.
833
833
1 . Let {field} be that named field on {type}.
834
834
2 . Let {implementedField} be that named field on {implementedType}.
835
- 1 . {field} must include an argument of the same name for every argument
835
+ 3 . {field} must include an argument of the same name for every argument
836
836
defined in {implementedField}.
837
837
1 . That named argument on {field} must accept the same type
838
838
(invariant) as that named argument on {implementedField}.
839
- 2 . {field} may include additional arguments not defined in
839
+ 4 . {field} may include additional arguments not defined in
840
840
{implementedField}, but any additional argument must not be required,
841
841
e.g. must not be of a non-nullable type.
842
- 3 . {field} must return a type which is equal to or a sub-type of
842
+ 5 . {field} must return a type which is equal to or a sub-type of
843
843
(covariant) the return type of {implementedField} field's return type:
844
844
1 . Let {fieldType} be the return type of {field}.
845
845
2 . Let {implementedFieldType} be the return type of {implementedField}.
@@ -1600,10 +1600,10 @@ be used by a GraphQL service which is itself an extension of another GraphQL ser
1600
1600
Input object type extensions have the potential to be invalid if incorrectly defined .
1601
1601
1602
1602
1. The named type must already be defined and must be a Input Object type .
1603
- 3 . All fields of an Input Object type extension must have unique names .
1604
- 4 . All fields of an Input Object type extension must not already be a field of
1603
+ 2 . All fields of an Input Object type extension must have unique names .
1604
+ 3 . All fields of an Input Object type extension must not already be a field of
1605
1605
the original Input Object .
1606
- 5 . Any non -repeatable directives provided must not already apply to the
1606
+ 4 . Any non -repeatable directives provided must not already apply to the
1607
1607
original Input Object type .
1608
1608
1609
1609
0 commit comments