File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1660,10 +1660,10 @@ fragment SomeFragment on SomeType {
1660
1660
}
1661
1661
```
1662
1662
1663
- A directive may be defined as repeatable at any permitted location with the ` repeatable `
1664
- keyword. Repeatable directives often useful when the same directive should be used with
1665
- different arguments at the one location, especially in cases where additional information
1666
- need to be provided in a form of directive via a type or a schema extension:
1663
+ A directive may be defined as repeatable at any permitted location with the ` repeatable `
1664
+ keyword. Repeatable directives are often useful when the same directive should be used with
1665
+ different arguments at a single location, especially in cases where additional information
1666
+ needs to be provided to a type or schema extension via a directive :
1667
1667
1668
1668
``` graphql example
1669
1669
directive @delegateField (name : String ! ) repeatable on OBJECT | INTERFACE
Original file line number Diff line number Diff line change @@ -418,4 +418,4 @@ Fields
418
418
locations this directive may be placed .
419
419
* `args ` returns a List of `__InputValue ` representing the arguments this
420
420
directive accepts .
421
- * `isRepeatable ` must return a Boolean which permits using the directive multiple times at the same location .
421
+ * `isRepeatable ` must return a Boolean that indicates if the directive may be used repeatedly at a single location .
Original file line number Diff line number Diff line change @@ -1440,7 +1440,7 @@ query @skip(if: $foo) {
1440
1440
** Formal Specification**
1441
1441
1442
1442
* For every {location} in the document for which Directives can apply:
1443
- * Let {directives} be the set of Directives which apply to {location} and not marked as ` repeatable ` .
1443
+ * Let {directives} be the set of Directives which apply to {location} and are not ` repeatable ` .
1444
1444
* For each {directive} in {directives}:
1445
1445
* Let {directiveName} be the name of {directive}.
1446
1446
* Let {namedDirectives} be the set of all Directives named {directiveName}
You can’t perform that action at this time.
0 commit comments