-
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
Editorial: Define _response map_ #1143
base: main
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for graphql-spec-draft ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
9e0af97
to
00fe58d
Compare
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.
Looks good to me 👍
(I have not done a full review of the spec to ensure we caught everything.)
dc300d1
to
78a2553
Compare
d127655
to
d906813
Compare
I prefer #1149 - "response payload" is much clearer IMO. |
I like Alternatively, did we already discuss reusing the graphql-js terminology? /**
* The result of GraphQL execution.
*
* - `errors` is included when any errors occurred as a non-empty array.
* - `data` is the result of a successful execution of the query.
* - `hasNext` is true if a future payload is expected.
* - `extensions` is reserved for adding non-standard properties.
* - `incremental` is a list of the results from defer/stream directives.
*/
export interface ExecutionResult {
errors?: ReadonlyArray<GraphQLError>;
data?: TData | null;
extensions?: TExtensions;
} |
I like that, but it would involve renaming a few other things too. In particular type Response = ExecutionResult | SubscriptionStream | IncrementalStream;
type ExecutionResult = {
data?: object
errors?: Error[]
extensions?: object
}
type SubscriptionStream = ExecutionResult[]
type IncrementalStream = [InitialExecutionResult, ...SubsequentExecutionResult];
type SubsequentExecutionResult = {
incremental?: IncrementalResult[]
pending?: Pending[]
completed?: CompletedResult[],
hasNext?: boolean;
}
type InitialExecutionResult =
ExecutionResult &
Partial<IncrementalExecutionResult> &
{ hasNext: true };
type IncrementalResult = IncrementalObjectResult | IncrementalListResult This kind of works? |
That'd work for me 👍 . As I was explaining in the other pr, I expect So maybe type Response = Result | ResultStream | IncrementalResultStream;
type Result = {
data?: object
errors?: Error[]
extensions?: object
}
type ResultStream = Result[]
type IncrementalResultStream = [InitialResult, ...SubsequentResult];
type SubsequentResult = {
incremental?: IncrementalResult[]
pending?: Pending[]
completed?: CompletedResult[],
hasNext?: boolean;
}
type InitialResult =
Result &
Partial<IncrementalResult> &
{ hasNext: true };
type IncrementalResult = IncrementalObjectResult | IncrementalListResult |
We use the term "result" throughout the GraphQL spec, so I think that calling it "result" would be dangerous. ("response" is not used so generically, so doesn't suffer the same issue.)
That's how it's used currently, but I think it's also reasonable for it to be a name for the stream - e.g. "SubscriptionStream" is clearly to me "a stream for a subscription" rather than "a stream of Subscription". We often use prefixes to name things to disambiguate them, e.g. in |
I think we should keep "Response" as the general concept and qualify it with each variant. Response Map, Incremental Response Map, Response Stream This will present longer names, but generally we should aim to avoid long term ambiguity if possible |
@leebyron "Response Stream" is really ambiguous to me. Is it a response or is it a stream of responses? Or both? |
Also interesting question is how we look at this in the context of GraphQL over HTTP. Do we consider that Incremental responses could potentially use jsonl format ( |
This creates a definition for Response Map, defined as the map normally returned by graphql queries and mutations containing data and/or errors. The definition of Response is updated to include both Response Map, and Response Stream (for subscriptions). For Incremental Delivery I plan on updating Response to also include _Incremental Stream_. Address feedback Update spec/Section 7 -- Response.md Co-authored-by: Benjie <[email protected]>
d906813
to
181e7ea
Compare
Follow up from #1135, Based on top of #1148
This creates a definition for Response Map, defined as the map normally returned by GraphQL queries and mutations containing data and/or errors. The term
response map
is already being use so I formally defined it and used the defined term throughout the rest of the spec. I also have an alternative proposal, Response Payload, as I think that fits better in the direction Incremental Delivery will be going.The definition of Response is updated to include both Response Map, and Response Stream (for subscriptions).
If we go with response map, I think the end result with Incremental Delivery will be something like:
I went through every mention of response and most of the remaining usages are around response key or response field, referring to the object property name (ie for aliases and error paths). This could also likely be standardized in a follow up.See https://github.com/graphql/graphql-spec/pull/1147/files