We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fecd9ca commit 5892e12Copy full SHA for 5892e12
1 file changed
spec/Section 3 -- Type System.md
@@ -2378,7 +2378,7 @@ fragment someFragment on User {
2378
2379
```graphql
2380
directive @stream(
2381
- initialCount: Int = 0
+ initialCount: Int! = 0
2382
if: Boolean! = true
2383
label: String
2384
) on FIELD
@@ -2406,7 +2406,7 @@ query myQuery($shouldStream: Boolean! = true) {
2406
2407
#### @stream Arguments
2408
2409
-- `initialCount: Int` - The number of list items the service should return
+- `initialCount: Int! = 0` - The number of list items the service should return
2410
initially. If omitted, defaults to `0`. A field error will be raised if the
2411
value of this argument is less than `0`.
2412
- `if: Boolean! = true` - When `true`, field _should_ be streamed (see related
0 commit comments