Skip to content

Commit ad5b2e2

Browse files
committed
remove "or null"
1 parent f950efb commit ad5b2e2

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
@@ -2159,7 +2159,7 @@ fragment someFragment on User {
21592159

21602160
- `if: Boolean! = true` - When `true`, fragment _should_ be deferred. When
21612161
`false`, fragment will not be deferred and data will be included in the
2162-
initial response. Defaults to `true` when omitted or null.
2162+
initial response. Defaults to `true` when omitted.
21632163
- `label: String` - May be used by GraphQL clients to identify the data from
21642164
responses and associate it with the corresponding defer directive. If
21652165
provided, the GraphQL Server must add it to the corresponding payload. `label`
@@ -2195,7 +2195,7 @@ query myQuery($shouldStream: Boolean) {
21952195

21962196
- `if: Boolean! = true` - When `true`, field _should_ be streamed. When `false`,
21972197
the field will not be streamed and all list items will be included in the
2198-
initial response. Defaults to `true` when omitted or null.
2198+
initial response. Defaults to `true` when omitted.
21992199
- `label: String` - May be used by GraphQL clients to identify the data from
22002200
responses and associate it with the corresponding stream directive. If
22012201
provided, the GraphQL Server must add it to the corresponding payload. `label`

0 commit comments

Comments
 (0)