Contributing
May 17, 2026 · View on GitHub
We welcome contributions and assistance! If you want to know where to start, check out our Github Projects sorted by name.
If you want to add a new feature, note that GraphiQL is eventually going to support its own extension system, and we are rarely adding new features, so make sure you submit feature requests with that in mind.
Development
To get setup for development, refer to DEVELOPMENT.md
Issues
We use GitHub issues to track public bugs and requests. Please ensure your bug description is clear and has sufficient instructions to be able to reproduce the issue. The best way is to provide a reduced test case on jsFiddle or jsBin.
Pull Requests
All active development of this project happens on GitHub. We actively welcome your pull requests.
Type Prefixes
a list of type prefixes is available:
[
"build",
"ci",
"chore",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test"
]
of these, fix and feat can trigger patch and minor version releases,
reflexively. the rest are useful to help track activity.
another commit message that can trigger a major version bump is this:
feat: introduce new `fooBar()` API, break `foo()` api
- list changes
BREAKING CHANGE: break `foo()` api
notice the non breaking spaces between header and footer.
Trying canary builds from a PR
Every PR publishes per-commit preview builds of all packages via pkg.pr.new. To grab the install commands:
- Open the PR's Checks tab.
- Open the PR / Canary Builds check in a new tab.
- Expand the final
npx pkg-pr-new publishstep. The log lists annpm i …command per package, pinned to that commit's SHA.
Paste the command for the package you want into your own project to install the canary build.
Releasing
Please see the RELEASING.md document.
License
By contributing to GraphiQL, you agree that your contributions will be licensed under the LICENSE file in the project root directory.