File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2247,7 +2247,7 @@ fragment someFragment on User {
2247
2247
2248
2248
```graphql
2249
2249
directive @stream (
2250
- initialCount : Int = 0
2250
+ initialCount : Int ! = 0
2251
2251
if : Boolean ! = true
2252
2252
label : String
2253
2253
) on FIELD
@@ -2275,7 +2275,7 @@ 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
2278
+ - `initialCount : Int ! = 0 ` - The number of list items the service should return
2279
2279
initially . If omitted , defaults to `0`. A field error will be raised if the
2280
2280
value of this argument is less than `0`.
2281
2281
- `if : Boolean ! = true ` - When `true `, field _should_ be streamed (see related
You can’t perform that action at this time.
0 commit comments