@@ -2366,7 +2366,7 @@ fragment someFragment on User {
23662366#### @defer Arguments
23672367
23682368- `if : Boolean ! = true ` - When `true `, fragment _should_ be deferred (see
2369- [Client handling of `@defer `/`@stream `](#sec-Client-handling-of-defer-stream- )).
2369+ [Client Handling of `@defer `/`@stream `](#sec-Client-handling-of-defer-stream)).
23702370 When `false `, fragment must not be deferred . Defaults to `true ` when omitted .
23712371- `label : String ` - An optional string literal (variables are disallowed ) used
23722372 by GraphQL clients to identify data in the _incremental stream_ and associate
@@ -2410,7 +2410,7 @@ query myQuery($shouldStream: Boolean! = true) {
24102410#### @stream Arguments
24112411
24122412- `if : Boolean ! = true ` - When `true `, field _should_ be streamed (see
2413- [Client handling of `@defer `/`@stream `](#sec-Client-handling-of-defer-stream- )).
2413+ [Client Handling of `@defer `/`@stream `](#sec-Client-handling-of-defer-stream)).
24142414 When `false `, the field must behave as if the `@stream ` directive is not
24152415 present —it must not be streamed and all of the list items must be included .
24162416 Defaults to `true ` when omitted .
@@ -2426,15 +2426,15 @@ query myQuery($shouldStream: Boolean! = true) {
24262426 size of the list is greater than or equal to the value of `initialCount `, the
24272427 GraphQL service _must_ initially include at least as many list items as the
24282428 value of `initialCount ` (see
2429- [Client handling of `@defer `/`@stream `](#sec-Client-handling-of-defer-stream- )).
2429+ [Client Handling of `@defer `/`@stream `](#sec-Client-handling-of-defer-stream)).
24302430
24312431Note : The
24322432[Defer And Stream Directive Labels Are Unique ](#sec-Defer-And-Stream-Directive-Labels-Are-Unique)
24332433validation rule ensures uniqueness of the values passed to `label ` on both the
24342434`@defer ` and `@stream ` directives . Variables are disallowed in the `label `
24352435because their values may not be known during validation .
24362436
2437- ### Client handling of ` @defer`/` @stream`
2437+ ### Client Handling of @defer/ @stream
24382438
24392439The ability to defer and /or stream data can have a potentially significant
24402440impact on application performance . Developers generally need clear , predictable
0 commit comments