@@ -2163,8 +2163,8 @@ fragment someFragment on User {
2163
2163
omitted.
2164
2164
- `label : String ` - May be used by GraphQL clients to identify the data from
2165
2165
responses and associate it with the corresponding defer directive . If
2166
- provided , the GraphQL Server must add it to the corresponding payload. `label`
2167
- must be unique label across all `@defer` and `@stream` directives in a
2166
+ provided , the GraphQL service must add it to the corresponding payload.
2167
+ `label` must be unique label across all `@defer` and `@stream` directives in a
2168
2168
document. `label` must not be provided as a variable.
2169
2169
2170
2170
### @stream
@@ -2200,19 +2200,19 @@ query myQuery($shouldStream: Boolean) {
2200
2200
when omitted.
2201
2201
- `label : String ` - May be used by GraphQL clients to identify the data from
2202
2202
responses and associate it with the corresponding stream directive . If
2203
- provided , the GraphQL Server must add it to the corresponding payload. `label`
2204
- must be unique label across all `@defer` and `@stream` directives in a
2203
+ provided , the GraphQL service must add it to the corresponding payload.
2204
+ `label` must be unique label across all `@defer` and `@stream` directives in a
2205
2205
document. `label` must not be provided as a variable.
2206
- - `initialCount : Int ` - The number of list items the server should return as
2206
+ - `initialCount : Int ` - The number of list items the service should return as
2207
2207
part of the initial response . If omitted , defaults to `0`. A field error will
2208
2208
be raised if the value of this argument is less than `0`.
2209
2209
2210
2210
Note : The ability to defer and /or stream parts of a response can have a
2211
2211
potentially significant impact on application performance . Developers generally
2212
2212
need clear , predictable control over their application's performance. It is
2213
- highly recommended that GraphQL servers honor the `@defer` and `@stream`
2213
+ highly recommended that GraphQL services honor the `@defer` and `@stream`
2214
2214
directives on each execution. However, the specification allows advanced use
2215
- cases where the server can determine that it is more performant to not defer
2215
+ cases where the service can determine that it is more performant to not defer
2216
2216
and/or stream. Therefore, GraphQL clients _must_ be able to process a response
2217
2217
that ignores the `@defer` and/or `@stream` directives. This also applies to the
2218
2218
`initialCount` argument on the `@stream` directive. Clients _must_ be able to
0 commit comments