@@ -2157,9 +2157,10 @@ fragment someFragment on User {
2157
2157
2158
2158
#### @defer Arguments
2159
2159
2160
- - `if : Boolean ! = true ` - When `true `, fragment _should_ be deferred . When
2161
- `false `, fragment will not be deferred and data will be included in the
2162
- initial response . Defaults to `true ` when omitted .
2160
+ - `if : Boolean ! = true ` - When `true `, fragment _should_ be deferred (See
2161
+ [related note](#note-088b7)). When `false`, fragment will not be deferred and
2162
+ data will be included in the initial response. Defaults to `true` when
2163
+ omitted.
2163
2164
- `label : String ` - May be used by GraphQL clients to identify the data from
2164
2165
responses and associate it with the corresponding defer directive . If
2165
2166
provided , the GraphQL Server must add it to the corresponding payload. `label`
@@ -2193,9 +2194,10 @@ query myQuery($shouldStream: Boolean) {
2193
2194
2194
2195
#### @stream Arguments
2195
2196
2196
- - `if : Boolean ! = true ` - When `true `, field _should_ be streamed . When `false `,
2197
- the field will not be streamed and all list items will be included in the
2198
- initial response . Defaults to `true ` when omitted .
2197
+ - `if : Boolean ! = true ` - When `true `, field _should_ be streamed (See
2198
+ [related note](#note-088b7)). When `false`, the field will not be streamed and
2199
+ all list items will be included in the initial response. Defaults to `true`
2200
+ when omitted.
2199
2201
- `label : String ` - May be used by GraphQL clients to identify the data from
2200
2202
responses and associate it with the corresponding stream directive . If
2201
2203
provided , the GraphQL Server must add it to the corresponding payload. `label`
0 commit comments