File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2203,8 +2203,8 @@ scalar UUID @specifiedBy(url: "https://tools.ietf.org/html/rfc4122")
2203
2203
2204
2204
```graphql
2205
2205
directive @defer (
2206
- label : String
2207
2206
if : Boolean ! = true
2207
+ label : String
2208
2208
) on FRAGMENT_SPREAD | INLINE_FRAGMENT
2209
2209
```
2210
2210
@@ -2247,9 +2247,9 @@ fragment someFragment on User {
2247
2247
2248
2248
```graphql
2249
2249
directive @stream (
2250
- label : String
2251
- if : Boolean ! = true
2252
2250
initialCount : Int = 0
2251
+ if : Boolean ! = true
2252
+ label : String
2253
2253
) on FIELD
2254
2254
```
2255
2255
@@ -2275,6 +2275,9 @@ query myQuery($shouldStream: Boolean! = true) {
2275
2275
2276
2276
#### @stream Arguments
2277
2277
2278
+ - `initialCount : Int ` - The number of list items the service should return
2279
+ initially . If omitted , defaults to `0`. A field error will be raised if the
2280
+ value of this argument is less than `0`.
2278
2281
- `if : Boolean ! = true ` - When `true `, field _should_ be streamed (see related
2279
2282
note below). When `false `, the field must not be streamed and all list items
2280
2283
must be initially included . Defaults to `true ` when omitted .
@@ -2284,9 +2287,6 @@ query myQuery($shouldStream: Boolean! = true) {
2284
2287
this label in the corresponding pending object within the result . The `label `
2285
2288
argument must be unique across all `@defer ` and `@stream ` directives in the
2286
2289
document .
2287
- - `initialCount : Int ` - The number of list items the service should return
2288
- initially . If omitted , defaults to `0`. A field error will be raised if the
2289
- value of this argument is less than `0`.
2290
2290
2291
2291
Note : The ability to defer and /or stream parts of a response can have a
2292
2292
potentially significant impact on application performance . Developers generally
You can’t perform that action at this time.
0 commit comments