@@ -2207,10 +2207,10 @@ fragment someFragment on User {
2207
2207
#### @defer Arguments
2208
2208
2209
2209
- `if : Boolean ! = true ` - When `true `, fragment _should_ be deferred (see
2210
- related note below). When `false `, fragment will not be deferred and data will
2211
- be included in the initial response . Defaults to `true ` when omitted .
2210
+ related note below). When `false `, fragment will not be deferred . Defaults to
2211
+ `true ` when omitted .
2212
2212
- `label : String ` - An optional string literal (variables are disallowed) used
2213
- by GraphQL clients to identify data from responses and associate it with the
2213
+ by GraphQL clients to identify data from payloads and associate it with the
2214
2214
corresponding defer directive . If provided , the GraphQL service must include
2215
2215
this label in the corresponding pending object within the response . The
2216
2216
`label ` argument must be unique across all `@defer ` and `@stream ` directives
@@ -2228,8 +2228,8 @@ directive @stream(
2228
2228
2229
2229
The `@stream ` directive may be provided for a field whose type incorporates a
2230
2230
`List ` type modifier ; the directive enables the backend to leverage technology
2231
- such as asynchronous iterators to provide a partial list in the initial payload ,
2232
- and additional list items in subsequent payloads .
2231
+ such as asynchronous iterators to provide a partial list initially , and
2232
+ additional list items in subsequent payloads .
2233
2233
2234
2234
The `@include ` and `@skip ` directives take precedence over `@stream `.
2235
2235
@@ -2254,16 +2254,16 @@ query myQuery($shouldStream: Boolean! = true) {
2254
2254
2255
2255
- `if : Boolean ! = true ` - When `true `, field _should_ be streamed (see related
2256
2256
note below). When `false `, the field will not be streamed and all list items
2257
- will be included in the initial response . Defaults to `true ` when omitted .
2257
+ will be initially included . Defaults to `true ` when omitted .
2258
2258
- `label : String ` - An optional string literal (variables are disallowed) used
2259
- by GraphQL clients to identify data from responses and associate it with the
2259
+ by GraphQL clients to identify data from payloads and associate it with the
2260
2260
corresponding stream directive . If provided , the GraphQL service must include
2261
2261
this label in the corresponding pending object within the response . The
2262
2262
`label ` argument must be unique across all `@defer ` and `@stream ` directives
2263
2263
in the document .
2264
- - `initialCount : Int ` - The number of list items the service should return as
2265
- part of the initial response . If omitted , defaults to `0`. A field error will
2266
- be raised if the value of this argument is less than `0`.
2264
+ - `initialCount : Int ` - The number of list items the service should return
2265
+ initially . If omitted , defaults to `0`. A field error will be raised if the
2266
+ value of this argument is less than `0`.
2267
2267
2268
2268
Note : The ability to defer and /or stream parts of a response can have a
2269
2269
potentially significant impact on application performance . Developers generally
0 commit comments