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 {
22472247
22482248```graphql
22492249directive @stream (
2250- initialCount : Int = 0
2250+ initialCount : Int ! = 0
22512251 if : Boolean ! = true
22522252 label : String
22532253) on FIELD
@@ -2275,7 +2275,7 @@ query myQuery($shouldStream: Boolean! = true) {
22752275
22762276#### @stream Arguments
22772277
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
22792279 initially . If omitted , defaults to `0`. A field error will be raised if the
22802280 value of this argument is less than `0`.
22812281- `if : Boolean ! = true ` - When `true `, field _should_ be streamed (see related
You can’t perform that action at this time.
0 commit comments