Skip to content

Commit 127f0ef

Browse files
committed
Editorial
1 parent d3dd6f7 commit 127f0ef

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

spec/Section 3 -- Type System.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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.
884884
3. An object type may declare that it implements one or more unique interfaces.
885885
4. 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.
16591659
3. 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

spec/Section 4 -- Introspection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ Fields\:
371371
- `description` may return a String or {null}.
372372
- `inputFields` must return the set of input fields as a list of `__InputValue`.
373373
- Accepts the argument `includeDeprecated` which defaults to {false}. If
374-
{true}, deprecated fields are also returned.
374+
{true}, deprecated input fields are also returned.
375375
- All other fields must return {null}.
376376

377377
**List**

0 commit comments

Comments
 (0)