Skip to content

Commit 3a0c0ae

Browse files
committed
Use new execution result terminology
1 parent 1279508 commit 3a0c0ae

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

spec/Section 3 -- Type System.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2343,8 +2343,8 @@ directive @defer(
23432343
The `@defer` directive may be provided on a fragment spread or inline fragment
23442344
to indicate that execution of the related selection set should be deferred. When
23452345
a request includes the `@defer` directive, it may return an _incremental stream_
2346-
consisting of an _initial response payload_ containing all non-deferred data,
2347-
followed by one or more _subsequent response payload_ including the deferred
2346+
consisting of an _initial execution result_ containing all non-deferred data,
2347+
followed by one or more _subsequent execution result_ including the deferred
23482348
data.
23492349

23502350
The `@include` and `@skip` directives take precedence over `@defer`.
@@ -2388,9 +2388,9 @@ directive @stream(
23882388

23892389
The `@stream` directive may be provided for a field whose type incorporates a
23902390
`List` type modifier. The directive enables returning a partial list initially,
2391-
followed by additional items in subsequent payloads. If the field type
2392-
incorporates multiple `List` type modifiers, only the outermost list is
2393-
streamed.
2391+
followed by additional items in one or more _subsequent execution result_. If
2392+
the field type incorporates multiple `List` type modifiers, only the outermost
2393+
list is streamed.
23942394

23952395
Note: The mechanism through which items are streamed is implementation-defined
23962396
and may use technologies such as asynchronous iterators.

0 commit comments

Comments
 (0)