-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Spec edits for incremental delivery, Section 3 only #1132
base: incremental-integration
Are you sure you want to change the base?
Spec edits for incremental delivery, Section 3 only #1132
Conversation
Updated to reflect spec draft graphql/graphql-spec#1132 Also changed the argument order to match the spec draft
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lots of nit-picky comments but I think we're pretty close! Do we have a glossary somewhere? I think we need to be really crisp on terms like "result", "response", "payload" and the like.
spec/Section 3 -- Type System.md
Outdated
responses: the initial response containing all non-deferred data, while | ||
subsequent responses include deferred data. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe that we've refined the terminology around this: there's one response. The response for stream/defer is a stream consisting of an initial result payload followed by a number of incremental payloads. I couldn't find where we discussed this, so please correct as appropriate.
responses: the initial response containing all non-deferred data, while | |
subsequent responses include deferred data. | |
payloads: the initial payload containing all non-deferred data, while subsequent | |
payloads include deferred data. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@benjie after the last discussion we had, I decided to drop payload
. The response section now says:
The result of a GraphQL request must be either a single initial response or an
incremental stream. The response will be an incremental stream when the GraphQL
service has deferred or streamed data as a result of the@defer
or@stream
directives. When the result of the GraphQL operation is an incremental stream,
the first value will be an initial response, followed by one or more subsequent
responses.
spec/Section 3 -- Type System.md
Outdated
- `initialCount: Int! = 0` - The number of list items the service should return | ||
initially. If omitted, defaults to `0`. A field error will be raised if the | ||
value of this argument is less than `0`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- `initialCount: Int! = 0` - The number of list items the service should return | |
initially. If omitted, defaults to `0`. A field error will be raised if the | |
value of this argument is less than `0`. | |
- `initialCount: Int! = 0` - The number of list items to include in the initial | |
result payload. If omitted, defaults to `0`. A field error will be raised if | |
the value of this argument is less than `0`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I updated this to The number of list items to include initially.
. I originally had something similar but there was feedback in one of the prior PRs that we shouldn't say initial response
since @stream
may be used inside of a @defer
. The initial items in this case would not be returned in the initial response.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's a good subtle catch. "Initially" is a bit weakly defined though; perhaps "The number of list items to include initially when completing the parent selection set." or something along those lines? I'm not happy with the term "completing" nor "resolving" here, mind. 🤔
spec/Section 3 -- Type System.md
Outdated
- `if: Boolean! = true` - When `true`, field _should_ be streamed (see related | ||
note below). When `false`, the field must not be streamed and all list items | ||
must be initially included. Defaults to `true` when omitted. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The "and" here implies this is an additional behaviour
- `if: Boolean! = true` - When `true`, field _should_ be streamed (see related | |
note below). When `false`, the field must not be streamed and all list items | |
must be initially included. Defaults to `true` when omitted. | |
- `if: Boolean! = true` - When `true`, field _should_ be streamed (see related | |
note below). When `false`, the field must behave as if the `@stream` directive | |
is not present—it must not be streamed and all of the list items must be | |
included. Defaults to `true` when omitted. |
spec/Section 3 -- Type System.md
Outdated
that ignores the `@defer` and/or `@stream` directives. This also applies to the | ||
`initialCount` argument on the `@stream` directive. Clients _must_ be able to | ||
process a streamed response that contains a different number of initial list | ||
items than what was specified in the `initialCount` argument. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I want to make it clear that each @stream
or @defer
may be ignored independently of the others.
that ignores the `@defer` and/or `@stream` directives. This also applies to the | |
`initialCount` argument on the `@stream` directive. Clients _must_ be able to | |
process a streamed response that contains a different number of initial list | |
items than what was specified in the `initialCount` argument. | |
that ignores individual `@defer` and/or `@stream` directives. This also applies | |
to the `initialCount` argument on the `@stream` directive. Clients must be | |
able to process a streamed response that contains a different number of initial | |
list items than what was specified in the `initialCount` argument. |
I've also removed the italics from _must_
because this is explicitly a non-normative note, and shouldn't have conformance requirements in it. If this is a conformance requirement that isn't stated elsewhere, it needs to be moved outside of the Note:
.
I also think that the final sentence is worded a bit weakly... Can the server return any number of results initially, followed by any number of results in follow up payloads? I personally don't think this is ideal. If a client says @stream(initialCount: 2)
then I think the server should either return at least two results in the initial result payload, and stream others; or not stream the result at all. If servers want to be able to always stream zero results they should add a lint rule to force initialCount
to always be omitted or = 0
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since we had consensus in the primary WG on graphql/defer-stream-wg#104, i have updated the initialCount
section above to include:
When the size of the list is greater than or equal
to the value ofinitialCount
, the GraphQL service must initially include
at least as many list items as the value ofinitialCount
(see related note
below).
With this text, I think it is safe to remove italics from must
. I believe this note is now just stating client consequences of server behavior that is described earlier.
Additionally I updated "contains a different number of initial list items" to "contains more initial list items"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right, because if it has fewer list items it's not a "streamed response"? Good thinking.
We should clarify that "response" doesn't mean the response as a whole, but just that from the field. Perhaps "streamed field response"/"streamed field result"?
d5322ae
to
32785b8
Compare
@benjie I added a rough glossary here: graphql/defer-stream-wg#106, I'll keep refining it as we go |
176172f
to
7c0ba73
Compare
Co-authored-by: Benjie <[email protected]>
Co-authored-by: Benjie <[email protected]>
* add tone of voice * format * fix formating * formatting * remove "repetition" --------- Co-authored-by: Lee Byron <[email protected]>
* Add response stream to Response Section * avoid future tense
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These changes look correct to me, I don't think the definition of the @stream/@defer
directives have changed in a very long time, so this feels good.
cf072a4
to
47f362c
Compare
Co-authored-by: Benjie <[email protected]>
Co-authored-by: Benoit 'BoD' Lubek <[email protected]>
0640179
to
b3187e0
Compare
Extracted from the full PR (#1110) and targeting an integration branch to aid in review.
Helpful reference material:
Response format examples: graphql/defer-stream-wg#69
Glossary: graphql/defer-stream-wg#106
GraphQL Conf talk: https://www.youtube.com/watch?v=LEyDeNoobT0