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
1947
1947
provide the `@deprecated ` directive if representing deprecated portions of the
1948
1948
schema .
1949
1949
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
+
1950
1958
GraphQL implementations that support the type system definition language should
1951
1959
provide the `@specifiedBy` directive if representing custom scalar definitions.
1952
1960
@@ -2166,14 +2174,6 @@ scalar UUID @specifiedBy(url: "https://tools.ietf.org/html/rfc4122")
2166
2174
2167
2175
### @defer
2168
2176
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
-
2177
2177
```graphql
2178
2178
directive @defer (
2179
2179
label : String
You can’t perform that action at this time.
0 commit comments