@@ -832,14 +832,14 @@ IsValidImplementation(type, implementedType):
832832 defined in {implementedType}.
833833 1 . Let {field} be that named field on {type}.
834834 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
836836 defined in {implementedField}.
837837 1 . That named argument on {field} must accept the same type
838838 (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
840840 {implementedField}, but any additional argument must not be required,
841841 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
843843 (covariant) the return type of {implementedField} field's return type:
844844 1 . Let {fieldType} be the return type of {field}.
845845 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
16001600Input object type extensions have the potential to be invalid if incorrectly defined .
16011601
160216021. 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
16051605 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
16071607 original Input Object type .
16081608
16091609
0 commit comments