We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3111640 commit 32785b8Copy full SHA for 32785b8
spec/Section 3 -- Type System.md
@@ -2221,7 +2221,7 @@ fragment someFragment on User {
2221
2222
```graphql
2223
directive @stream(
2224
- initialCount: Int = 0
+ initialCount: Int! = 0
2225
if: Boolean! = true
2226
label: String
2227
) on FIELD
@@ -2249,7 +2249,7 @@ query myQuery($shouldStream: Boolean! = true) {
2249
2250
#### @stream Arguments
2251
2252
-- `initialCount: Int` - The number of list items the service should return
+- `initialCount: Int! = 0` - The number of list items the service should return
2253
initially. If omitted, defaults to `0`. A field error will be raised if the
2254
value of this argument is less than `0`.
2255
- `if: Boolean! = true` - When `true`, field _should_ be streamed (see related
0 commit comments