Skip to content

Commit 9b40a10

Browse files
robrichardyaacovCR
authored andcommitted
remove "or null"
1 parent d031c8f commit 9b40a10

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

22062206
- `if: Boolean! = true` - When `true`, fragment _should_ be deferred. When
22072207
`false`, fragment will not be deferred and data will be included in the
2208-
initial response. Defaults to `true` when omitted or null.
2208+
initial response. Defaults to `true` when omitted.
22092209
- `label: String` - May be used by GraphQL clients to identify the data from
22102210
responses and associate it with the corresponding defer directive. If
22112211
provided, the GraphQL Server must add it to the corresponding payload. `label`
@@ -2241,7 +2241,7 @@ query myQuery($shouldStream: Boolean) {
22412241

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

0 commit comments

Comments
 (0)