We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7cfcf0 commit df61253Copy full SHA for df61253
1 file changed
spec/Section 3 -- Type System.md
@@ -2247,7 +2247,7 @@ fragment someFragment on User {
2247
2248
```graphql
2249
directive @stream(
2250
- initialCount: Int = 0
+ initialCount: Int! = 0
2251
if: Boolean! = true
2252
label: String
2253
) on FIELD
@@ -2275,7 +2275,7 @@ query myQuery($shouldStream: Boolean! = true) {
2275
2276
#### @stream Arguments
2277
2278
-- `initialCount: Int` - The number of list items the service should return
+- `initialCount: Int! = 0` - The number of list items the service should return
2279
initially. If omitted, defaults to `0`. A field error will be raised if the
2280
value of this argument is less than `0`.
2281
- `if: Boolean! = true` - When `true`, field _should_ be streamed (see related
0 commit comments