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 @@ -2378,7 +2378,7 @@ fragment someFragment on User {
23782378
23792379```graphql
23802380directive @stream (
2381- initialCount : Int = 0
2381+ initialCount : Int ! = 0
23822382 if : Boolean ! = true
23832383 label : String
23842384) on FIELD
@@ -2406,7 +2406,7 @@ query myQuery($shouldStream: Boolean! = true) {
24062406
24072407#### @stream Arguments
24082408
2409- - `initialCount : Int ` - The number of list items the service should return
2409+ - `initialCount : Int ! = 0 ` - The number of list items the service should return
24102410 initially . If omitted , defaults to `0 `. A field error will be raised if the
24112411 value of this argument is less than `0 `.
24122412- `if : Boolean ! = true ` - When `true `, field _should_ be streamed (see related
You can’t perform that action at this time.
0 commit comments