Skip to content
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 payload_ #1149

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

robrichard
Copy link
Contributor

Follow up from #1135, Based on top of #1148

Alternative name Response Map: #1143

This creates a definition for Response Payload, 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 Payload, and Response Stream (for subscriptions).

I like using Payload as i think it extends naturally for incremental delivery. If this change is approved I plan to add two additional types, InitialResponsePayload and SubsequentResponsePayload as well as IncrementalStream, the stream of those types.

Proposal for incremental delivery (roughly):

type ResponsePayload = {
  data?: object
  errors?: Error[]
  extensions?: object
}
type ResponseStream = ResponsePayload[]
type IncrementalStream = [InitialResponsePayload, ...SubsequentResponsePayload];
type Response = ResponsePayload | ResponseStream | IncrementalStream;

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

Copy link

netlify bot commented Mar 13, 2025

Deploy Preview for graphql-spec-draft ready!

Name Link
🔨 Latest commit d9bbd4e
🔍 Latest deploy log https://app.netlify.com/sites/graphql-spec-draft/deploys/67ee75d4924a5b0008a0b7a9
😎 Deploy Preview https://deploy-preview-1149--graphql-spec-draft.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link
Member

@benjie benjie left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I approve, I think this makes it a lot clearer.

@robrichard robrichard force-pushed the robrichard/response-payload branch 2 times, most recently from 0c04b74 to bb5766e Compare March 13, 2025 17:50
@benjie benjie added the ✏️ Editorial PR is non-normative or does not influence implementation label Mar 13, 2025
Copy link
Member

@benjie benjie left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The term "payload" is used twice in the spec currently, each time to refer to the {data,errors} object that a subscription stream may yield on each event. This is consistent with our use of "response payload" here, so I approve 👍

Comment on lines +62 to +63
If an error was raised during execution that propagated to the operation root,
the `data` entry in the _response payload_ should be `null`.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note to other reviewers: this line contains a subtle fix to the wording. 👍

@robrichard robrichard force-pushed the robrichard/response-payload branch from bb5766e to 9aa2f0a Compare April 3, 2025 11:46
Comment on lines +18 to +19
:: A GraphQL request returns a _response payload_ when the GraphQL operation is
a query or mutation. When the GraphQL operation is a subscription, the GraphQL
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This sentence is no longer accurate. A GraphQL query with incremental delivery no longer returns a response payload.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, this section will be updated in the Incremental Delivery spec draft: #1124. I'll update it once we have settled on the terms here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
✏️ Editorial PR is non-normative or does not influence implementation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants