Update to new GraphQL incremental delivery format#3
Merged
Conversation
ddb2627 to
90a5824
Compare
…v0.2) - Upgrade graphql to 17.0.0-alpha.9 - Use native experimentalExecuteIncrementally in loader-query - Update Accept header to use incrementalSpec=v0.2 - Handle pending/incremental/completed arrays with id tracking - Merge parent id into deferred data for Relay normalization
90a5824 to
d2fb8cd
Compare
This was referenced Feb 15, 2026
Closed
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Updates to support the new GraphQL incremental delivery response format as specified in the draft
@defer/@streamproposal. This is a breaking change requiring updates to client-side code.Changes
experimentalExecuteIncrementallyinstead of@graphql-tools/executorpending/incremental/completedarrays with ID-based tracking (replaces directpathon incremental items)incrementalSpec=v0.2replacesdeferSpec=20220824processMultipartResponseutility - Exported from@remix-relay/reactfor client-side multipart processingidinto deferred fragments for proper store normalizationMigration
Replace custom multipart processing with the new utility:
Update Accept header to
multipart/mixed; incrementalSpec=v0.2, application/jsonReferences