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 d1a4c15 commit a972310Copy full SHA for a972310
1 file changed
src/main/java/graphql/introspection/Introspection.java
@@ -408,6 +408,7 @@ public enum DirectiveLocation {
408
.description("An enum describing valid locations where a directive can be placed")
409
.value("QUERY", DirectiveLocation.QUERY, "Indicates the directive is valid on queries.")
410
.value("MUTATION", DirectiveLocation.MUTATION, "Indicates the directive is valid on mutations.")
411
+ .value("SUBSCRIPTION", DirectiveLocation.SUBSCRIPTION, "Indicates the directive is valid on subscriptions.")
412
.value("FIELD", DirectiveLocation.FIELD, "Indicates the directive is valid on fields.")
413
.value("FRAGMENT_DEFINITION", DirectiveLocation.FRAGMENT_DEFINITION, "Indicates the directive is valid on fragment definitions.")
414
.value("FRAGMENT_SPREAD", DirectiveLocation.FRAGMENT_SPREAD, "Indicates the directive is valid on fragment spreads.")
0 commit comments