File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -1947,6 +1947,14 @@ GraphQL implementations that support the type system definition language must
19471947provide the `@deprecated ` directive if representing deprecated portions of the
19481948schema .
19491949
1950+ GraphQL services are not required to implement the `@defer ` and `@stream `
1951+ directives . If either or both of these directives are implemented , they must be
1952+ implemented according to this specification . GraphQL services that do not
1953+ support these directives must not make them available via introspection . The
1954+ [Directives Are Defined ](#sec-Directives-Are-Defined) validation rule will
1955+ prevent GraphQL Operations containing the `@defer` or `@stream` directive from
1956+ being executed by a GraphQL service that does not implement these directives.
1957+
19501958GraphQL implementations that support the type system definition language should
19511959provide the `@specifiedBy` directive if representing custom scalar definitions.
19521960
@@ -2166,14 +2174,6 @@ scalar UUID @specifiedBy(url: "https://tools.ietf.org/html/rfc4122")
21662174
21672175### @defer
21682176
2169- GraphQL implementations are not required to implement the `@defer ` and `@stream `
2170- directives . If either or both of these directives are implemented , they must be
2171- implemented according to this specification . GraphQL implementations that do not
2172- support these directives must not make them available via introspection . The
2173- [Directives Are Defined ](#sec-Directives-Are-Defined) validation rule will
2174- prevent GraphQL Operations containing the `@defer` or `@stream` directive from
2175- being executed by a GraphQL service that does not implement these directives.
2176-
21772177```graphql
21782178directive @defer (
21792179 label : String
You can’t perform that action at this time.
0 commit comments