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