Skip to content

Commit 3b8799e

Browse files
committed
Use new execution result terminology
1 parent 6df7b50 commit 3b8799e

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
@@ -2212,8 +2212,8 @@ directive @defer(
22122212
The `@defer` directive may be provided on a fragment spread or inline fragment
22132213
to indicate that execution of the related selection set should be deferred. When
22142214
a request includes the `@defer` directive, it may return an _incremental stream_
2215-
consisting of an _initial response payload_ containing all non-deferred data,
2216-
followed by one or more _subsequent response payload_ including the deferred
2215+
consisting of an _initial execution result_ containing all non-deferred data,
2216+
followed by one or more _subsequent exection result_ including the deferred
22172217
data.
22182218

22192219
The `@include` and `@skip` directives take precedence over `@defer`.
@@ -2257,9 +2257,9 @@ directive @stream(
22572257

22582258
The `@stream` directive may be provided for a field whose type incorporates a
22592259
`List` type modifier. The directive enables returning a partial list initially,
2260-
followed by additional items in subsequent payloads. If the field type
2261-
incorporates multiple `List` type modifiers, only the outermost list is
2262-
streamed.
2260+
followed by additional items in one or more _subsequent exection result_. If the
2261+
field type incorporates multiple `List` type modifiers, only the outermost list
2262+
is streamed.
22632263

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

0 commit comments

Comments
 (0)