You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for directives on directive definitions (#4521)
Allow directives on directive definitions, based on [this spec PR](graphql/graphql-spec#1206) which introduces this syntax:
```graphql
directive @onDirective on DIRECTIVE_DEFINITION
directive @foo @onDirective on OBJECT
directive @baz@deprecated(reason: "...") on OBJECT
extend directive @quux@deprecated(reason: "...")
```
Co-authored-by: Martin Bonnin <martin@mbonnin.net>
Co-authored-by: Jerel Miller <jerelmiller@gmail.com>
Co-authored-by: Yaacov Rydzinski <yaacovCR@gmail.com>
0 commit comments