Mirror: TypeScript LSP plugin that finds GraphQL documents in your code and provides diagnostics, auto-complete and hover-information.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Version Packages (#28)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

authored by

github-actions[bot]
github-actions[bot]
and committed by
GitHub
96e59173 bfc522bf

+18 -21
-5
.changeset/five-dancers-refuse.md
··· 1 - --- 2 - '@0no-co/graphqlsp': minor 3 - --- 4 - 5 - Add ability to specify a URL for your schema, GraphQLSP will then fetch the introspection from the specified URL
-5
.changeset/grumpy-toes-serve.md
··· 1 - --- 2 - '@0no-co/graphqlsp': minor 3 - --- 4 - 5 - Display some documentation alongside fields and fragments, for fields it will show the documentation or the type and for fragmentSpreads the typeCondition will be displayed
-5
.changeset/olive-jokes-drum.md
··· 1 - --- 2 - '@0no-co/graphqlsp': patch 3 - --- 4 - 5 - Check the `dirty` state of the file an additional time to prevent writing to the file when the user types directly after saving
-5
.changeset/proud-trainers-switch.md
··· 1 - --- 2 - '@0no-co/graphqlsp': patch 3 - --- 4 - 5 - Enforce the correct type on FragmentSpread suggestions
+17
CHANGELOG.md
··· 1 + # @0no-co/graphqlsp 2 + 3 + ## 0.2.0 4 + 5 + ### Minor Changes 6 + 7 + - Add ability to specify a URL for your schema, GraphQLSP will then fetch the introspection from the specified URL 8 + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#26](https://github.com/0no-co/GraphQLSP/pull/26)) 9 + - Display some documentation alongside fields and fragments, for fields it will show the documentation or the type and for fragmentSpreads the typeCondition will be displayed 10 + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#31](https://github.com/0no-co/GraphQLSP/pull/31)) 11 + 12 + ### Patch Changes 13 + 14 + - Check the `dirty` state of the file an additional time to prevent writing to the file when the user types directly after saving 15 + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#27](https://github.com/0no-co/GraphQLSP/pull/27)) 16 + - Enforce the correct type on FragmentSpread suggestions 17 + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#32](https://github.com/0no-co/GraphQLSP/pull/32))
+1 -1
package.json
··· 1 1 { 2 2 "name": "@0no-co/graphqlsp", 3 - "version": "0.1.0", 3 + "version": "0.2.0", 4 4 "description": "TypeScript LSP plugin that finds GraphQL documents in your code and provides hints and auto-generates types.", 5 5 "main": "./dist/index.js", 6 6 "module": "./dist/index.module.js",