We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c8c4bd commit 218e0daCopy full SHA for 218e0da
spec/Section 3 -- Type System.md
@@ -1663,7 +1663,13 @@ fragment SomeFragment on SomeType {
1663
Directive may be defined as repeatable per location with the `repeatable` keyword:
1664
1665
```graphql example
1666
-directive @example repeatable on OBJECT | INTERFACE
+directive @delegateField(name: String!) repeatable on OBJECT | INTERFACE
1667
+
1668
+type Book @delegateField(name: "pageCount") @delegateField(name: "author") {
1669
+ id: ID!
1670
+}
1671
1672
+extend type Book @delegateField(name: "index")
1673
```
1674
1675
Directive locations may be defined with an optional leading `|` character to aid
0 commit comments