@@ -2209,8 +2209,8 @@ fragment someFragment on User {
2209
2209
omitted.
2210
2210
- `label : String ` - May be used by GraphQL clients to identify the data from
2211
2211
responses and associate it with the corresponding defer directive . If
2212
- provided , the GraphQL Server must add it to the corresponding payload. `label`
2213
- must be unique label across all `@defer` and `@stream` directives in a
2212
+ provided , the GraphQL service must add it to the corresponding payload.
2213
+ `label` must be unique label across all `@defer` and `@stream` directives in a
2214
2214
document. `label` must not be provided as a variable.
2215
2215
2216
2216
### @stream
@@ -2246,19 +2246,19 @@ query myQuery($shouldStream: Boolean) {
2246
2246
when omitted.
2247
2247
- `label : String ` - May be used by GraphQL clients to identify the data from
2248
2248
responses and associate it with the corresponding stream directive . If
2249
- provided , the GraphQL Server must add it to the corresponding payload. `label`
2250
- must be unique label across all `@defer` and `@stream` directives in a
2249
+ provided , the GraphQL service must add it to the corresponding payload.
2250
+ `label` must be unique label across all `@defer` and `@stream` directives in a
2251
2251
document. `label` must not be provided as a variable.
2252
- - `initialCount : Int ` - The number of list items the server should return as
2252
+ - `initialCount : Int ` - The number of list items the service should return as
2253
2253
part of the initial response . If omitted , defaults to `0`. A field error will
2254
2254
be raised if the value of this argument is less than `0`.
2255
2255
2256
2256
Note : The ability to defer and /or stream parts of a response can have a
2257
2257
potentially significant impact on application performance . Developers generally
2258
2258
need clear , predictable control over their application's performance. It is
2259
- highly recommended that GraphQL servers honor the `@defer` and `@stream`
2259
+ highly recommended that GraphQL services honor the `@defer` and `@stream`
2260
2260
directives on each execution. However, the specification allows advanced use
2261
- cases where the server can determine that it is more performant to not defer
2261
+ cases where the service can determine that it is more performant to not defer
2262
2262
and/or stream. Therefore, GraphQL clients _must_ be able to process a response
2263
2263
that ignores the `@defer` and/or `@stream` directives. This also applies to the
2264
2264
`initialCount` argument on the `@stream` directive. Clients _must_ be able to
0 commit comments