Skip to content

Commit 5892e12

Browse files
robrichardbenjie
andcommitted
Apply suggestions from code review
Co-authored-by: Benjie <[email protected]>
1 parent fecd9ca commit 5892e12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/Section 3 -- Type System.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2378,7 +2378,7 @@ fragment someFragment on User {
23782378

23792379
```graphql
23802380
directive @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

0 commit comments

Comments
 (0)