- Thanks to @jason-dour for contributing configurable GitHub auth scopes via the
githubGraphql.scopes
setting 🎉
- Serializer has moved to the VS Code GraphQL Notebook extension, which remains compatible with VS Code for the Web. You can continue to open
*.github-graphql-nb
files with the generic GraphQL notebook serializer - This extension now provides a convenience layer for running GitHub API queries as an alternative to configuring an endpoint using a
graphql-config
file
- Use
rebornix.vscode-code-renderer
extension to render JSON notebook output - Fix GraphQL language configuration
- Add missing JSON indentation on web
- This extension now works in https://vscode.dev and https://github.dev
- github-graphql-nb file types now open in the notebook UI by default
- Markdown cells now render correctly
-
You can now use variables with your queries as follows:
query ($owner: String!, $repo: String!) { repository(owner: $owner, name: $repo) { name } } variables { "owner": "eamodio", "repo": "vscode-gitlens" }
(Thanks @eamodio!)