@@ -880,7 +880,7 @@ of rules must be adhered to by every Object type in a GraphQL schema.
880880 2. The argument must accept a type where {IsInputType (argumentType)}
881881 returns {true }.
882882 3. If argument type is Non -Null and a default value is not defined :
883- - The `@deprecated ` directive shall not be applied to this argument .
883+ - The `@deprecated ` directive must not be applied to this argument .
8848843. An object type may declare that it implements one or more unique interfaces .
8858854. An object type must be a super -set of all interfaces it implements :
886886 1. Let this object type be {objectType }.
@@ -1655,7 +1655,7 @@ input ExampleInputObject {
16551655 3. The input field must accept a type where {IsInputType (inputFieldType)}
16561656 returns {true }.
16571657 4. If input field type is Non -Null and a default value is not defined :
1658- - The `@deprecated ` directive shall not be applied to this input field .
1658+ - The `@deprecated ` directive must not be applied to this input field .
165916593. If an Input Object references itself either directly or through referenced
16601660 Input Objects , at least one of the fields in the chain of references must be
16611661 either a nullable or a List type .
@@ -2089,8 +2089,8 @@ type ExampleType {
20892089}
20902090```
20912091
2092- A required argument or input field should first be made optional by either
2093- changing the type to nullable or adding a default value .
2092+ To deprecate a required argument or input field , it must first be made optional
2093+ by either changing the type to nullable or adding a default value .
20942094
20952095### @specifiedBy
20962096
0 commit comments