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