Skip to content

Commit 8d07dee

Browse files
committed
link to note on should
1 parent 38bfbb9 commit 8d07dee

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
@@ -2157,9 +2157,10 @@ fragment someFragment on User {
21572157

21582158
#### @defer Arguments
21592159

2160-
- `if: Boolean! = true` - When `true`, fragment _should_ be deferred. When
2161-
`false`, fragment will not be deferred and data will be included in the
2162-
initial response. Defaults to `true` when omitted.
2160+
- `if: Boolean! = true` - When `true`, fragment _should_ be deferred (See
2161+
[related note](#note-088b7)). When `false`, fragment will not be deferred and
2162+
data will be included in the initial response. Defaults to `true` when
2163+
omitted.
21632164
- `label: String` - May be used by GraphQL clients to identify the data from
21642165
responses and associate it with the corresponding defer directive. If
21652166
provided, the GraphQL Server must add it to the corresponding payload. `label`
@@ -2193,9 +2194,10 @@ query myQuery($shouldStream: Boolean) {
21932194

21942195
#### @stream Arguments
21952196

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

0 commit comments

Comments
 (0)