Skip to content

Commit fd47489

Browse files
robrichardyaacovCR
authored andcommitted
link to note on should
1 parent 7ba98ea commit fd47489

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

spec/Section 3 -- Type System.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2202,9 +2202,10 @@ fragment someFragment on User {
22022202

22032203
#### @defer Arguments
22042204

2205-
- `if: Boolean! = true` - When `true`, fragment _should_ be deferred. When
2206-
`false`, fragment will not be deferred and data will be included in the
2207-
initial response. Defaults to `true` when omitted.
2205+
- `if: Boolean! = true` - When `true`, fragment _should_ be deferred (See
2206+
[related note](#note-088b7)). When `false`, fragment will not be deferred and
2207+
data will be included in the initial response. Defaults to `true` when
2208+
omitted.
22082209
- `label: String` - May be used by GraphQL clients to identify the data from
22092210
responses and associate it with the corresponding defer directive. If
22102211
provided, the GraphQL Server must add it to the corresponding payload. `label`
@@ -2238,9 +2239,10 @@ query myQuery($shouldStream: Boolean) {
22382239

22392240
#### @stream Arguments
22402241

2241-
- `if: Boolean! = true` - When `true`, field _should_ be streamed. When `false`,
2242-
the field will not be streamed and all list items will be included in the
2243-
initial response. Defaults to `true` when omitted.
2242+
- `if: Boolean! = true` - When `true`, field _should_ be streamed (See
2243+
[related note](#note-088b7)). When `false`, the field will not be streamed and
2244+
all list items will be included in the initial response. Defaults to `true`
2245+
when omitted.
22442246
- `label: String` - May be used by GraphQL clients to identify the data from
22452247
responses and associate it with the corresponding stream directive. If
22462248
provided, the GraphQL Server must add it to the corresponding payload. `label`

0 commit comments

Comments
 (0)