@@ -2203,9 +2203,10 @@ fragment someFragment on User {
2203
2203
2204
2204
#### @defer Arguments
2205
2205
2206
- - `if : Boolean ! = true ` - When `true `, fragment _should_ be deferred . When
2207
- `false `, fragment will not be deferred and data will be included in the
2208
- initial response . Defaults to `true ` when omitted .
2206
+ - `if : Boolean ! = true ` - When `true `, fragment _should_ be deferred (See
2207
+ [related note](#note-088b7)). When `false`, fragment will not be deferred and
2208
+ data will be included in the initial response. Defaults to `true` when
2209
+ omitted.
2209
2210
- `label : String ` - May be used by GraphQL clients to identify the data from
2210
2211
responses and associate it with the corresponding defer directive . If
2211
2212
provided , the GraphQL Server must add it to the corresponding payload. `label`
@@ -2239,9 +2240,10 @@ query myQuery($shouldStream: Boolean) {
2239
2240
2240
2241
#### @stream Arguments
2241
2242
2242
- - `if : Boolean ! = true ` - When `true `, field _should_ be streamed . When `false `,
2243
- the field will not be streamed and all list items will be included in the
2244
- initial response . Defaults to `true ` when omitted .
2243
+ - `if : Boolean ! = true ` - When `true `, field _should_ be streamed (See
2244
+ [related note](#note-088b7)). When `false`, the field will not be streamed and
2245
+ all list items will be included in the initial response. Defaults to `true`
2246
+ when omitted.
2245
2247
- `label : String ` - May be used by GraphQL clients to identify the data from
2246
2248
responses and associate it with the corresponding stream directive . If
2247
2249
provided , the GraphQL Server must add it to the corresponding payload. `label`
0 commit comments