Adds full GraphQL syntax highlighting and language support such as bracket matching.
- Supports
.graphql
/.gql
/.graphqls
highlighting - Javascript, Typescript & JSX/TSX (examples: test.js & test.ts)
- Vue (examples: test-sfc-comp.vue & test-sfc.vue)
- Svelte (example: test.svelte)
- ReasonML/ReScript (
%graphql()
) (example: test.re) - Python (example: test.py)
- PHP (example: test.php)
- Markdown (examples: test.md & test-py.md)
- Scala (example: test.scala)
You'll want to install this if you do not use graphql-config
, or want to use
the highlighting with other extensions than vscode-graphql
Feel free to open a PR to fix, enhance any language support, or even add new languages 😍
see:
Whether fixing a bug or adding a new delimiter for your language, here are a few tips for you:
- TDD approach: add your bug case or new delimiter example to the relevant file in
tests/__fixtures__
- run
yarn test -u
in the syntax extension workspace, and observe whether vscode-textmate tokenizes your example properly - fix/update/add the relevant pattern, and repeat the above to see if the tokenization changes. you should see
meta.embedded.block.graphql
- to test manually, run
yarn vsce:package
in the workspace and right click to install the bundled vsix extension, and open the fixture file
- add a file to grammars following our other examples.
- be sure to add it to
package.json
contributions as well, in thegrammars
section. thetext.html.markdown
is for applying to markdown codeblocks - use a scope ala
source.{lang}
from a vscode-provided syntax grammar, or a popular, official contributed grammar. To find the name of the scope for any token's highlighting, useDeveloper: Inspect Editor Tokens & Scopes
from the vscode command palette. - name it
inline.graphql.{lang}
for consistency - add a test file
tests/__fixture__
to document example usage, and a test spec to__tests__
to assert the snapshot, pointing to the source you created - run
yarn test -u
in the workspace to add the snapshot - use the snapshots to ensure your capture groups are working and serializing the graphql as expected
- in the test fixture, document all working cases and non working cases with Todo comments for common usage in your language. be sure to think of cases such as string interpolation and generics for typed languages.
- add it to the list above in the readme, with links to your test fixtures as usage documentation
- to manually test it in vscode itself, run
yarn vsce:package
in the syntax extension workspace and right click and install the bundled vsix file, then view the test fixture
We would love for the other graphql extension authors to freely use this syntax
extension as well! Even if your extension is designed to replace
vscode-graphql
, or if it's designed for other other purposes. It uses an MIT
license, but attribution is always a nice gesture to the original authors :)
MIT License
Copyright 2022 GraphQL Contributors