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 @@ -2221,7 +2221,7 @@ fragment someFragment on User {
2221
2221
2222
2222
```graphql
2223
2223
directive @stream (
2224
- initialCount : Int = 0
2224
+ initialCount : Int ! = 0
2225
2225
if : Boolean ! = true
2226
2226
label : String
2227
2227
) on FIELD
@@ -2249,7 +2249,7 @@ query myQuery($shouldStream: Boolean! = true) {
2249
2249
2250
2250
#### @stream Arguments
2251
2251
2252
- - `initialCount : Int ` - The number of list items the service should return
2252
+ - `initialCount : Int ! = 0 ` - The number of list items the service should return
2253
2253
initially . If omitted , defaults to `0`. A field error will be raised if the
2254
2254
value of this argument is less than `0`.
2255
2255
- `if : Boolean ! = true ` - When `true `, field _should_ be streamed (see related
You can’t perform that action at this time.
0 commit comments