@@ -2163,8 +2163,8 @@ fragment someFragment on User {
21632163 omitted.
21642164- `label : String ` - May be used by GraphQL clients to identify the data from
21652165 responses and associate it with the corresponding defer directive . If
2166- provided , the GraphQL Server must add it to the corresponding payload. `label`
2167- must be unique label across all `@defer` and `@stream` directives in a
2166+ provided , the GraphQL service must add it to the corresponding payload.
2167+ `label` must be unique label across all `@defer` and `@stream` directives in a
21682168 document. `label` must not be provided as a variable.
21692169
21702170### @stream
@@ -2200,19 +2200,19 @@ query myQuery($shouldStream: Boolean) {
22002200 when omitted.
22012201- `label : String ` - May be used by GraphQL clients to identify the data from
22022202 responses and associate it with the corresponding stream directive . If
2203- provided , the GraphQL Server must add it to the corresponding payload. `label`
2204- must be unique label across all `@defer` and `@stream` directives in a
2203+ provided , the GraphQL service must add it to the corresponding payload.
2204+ `label` must be unique label across all `@defer` and `@stream` directives in a
22052205 document. `label` must not be provided as a variable.
2206- - `initialCount : Int ` - The number of list items the server should return as
2206+ - `initialCount : Int ` - The number of list items the service should return as
22072207 part of the initial response . If omitted , defaults to `0`. A field error will
22082208 be raised if the value of this argument is less than `0`.
22092209
22102210Note : The ability to defer and /or stream parts of a response can have a
22112211potentially significant impact on application performance . Developers generally
22122212need clear , predictable control over their application's performance. It is
2213- highly recommended that GraphQL servers honor the `@defer` and `@stream`
2213+ highly recommended that GraphQL services honor the `@defer` and `@stream`
22142214directives on each execution. However, the specification allows advanced use
2215- cases where the server can determine that it is more performant to not defer
2215+ cases where the service can determine that it is more performant to not defer
22162216and/or stream. Therefore, GraphQL clients _must_ be able to process a response
22172217that ignores the `@defer` and/or `@stream` directives. This also applies to the
22182218`initialCount` argument on the `@stream` directive. Clients _must_ be able to
0 commit comments