Open
Conversation
🦋 Changeset detectedLatest commit: ecb2b92 The changes in this PR will be included in the next version bump. This PR includes changesets to release 7 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
TallTed
reviewed
Oct 17, 2025
| /** | ||
| * A hash that is unique for a combination of the contents of the query | ||
| * editor, the variables editor and the request headers editor (i.e., all the editor | ||
| * editor, the variables editor, the request headers editor, and the extensions editor (i.e., all the editor |
Contributor
There was a problem hiding this comment.
Suggested change
| * editor, the variables editor, the request headers editor, and the extensions editor (i.e., all the editor | |
| * editor, the variables editor, the request headers editor, and the extensions editor (i.e., all the editors |
Author
|
@dimaMachina following on from our previous discussion, could you help me review this PR? |
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.
Adds support for GraphQL request
extensions. Adds a tab to the UI to allow users to sendextensionsalongside their GraphQL request, similar to variables and headers.extensionsis a map that can be included in the GraphQL request, and is part of the GraphQL-over-HTTP spec but not yet implemented in GraphiQL. It's handy for sending non-typed extra information inside the GraphQL payload. It's particularly useful if you can't rely on URL params or headers to pass along additional information. Spec link: https://graphql.github.io/graphql-over-http/draft/#sec-Request-ParametersThis PR addresses #3372 and is an updated version of #3409
I am not very familiar with React nor TypeScript so please let me know your comments. I've also manually tested by running GraphiQL locally and inspecting the outgoing GraphQL request in the network tab as shown in the picture above.