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 (#44)

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
92fda238 69611858

+9 -7
-6
.changeset/sour-feet-hear.md
··· 1 - --- 2 - '@0no-co/graphqlsp': minor 3 - --- 4 - 5 - Add a `message` diagnostic when we see an import from a file that has `fragment` exports we'll warn you when they are not imported, this because of the assumption that to use this file one would have to adhere to the data requirements of said file. 6 - You can choose to disable this setting by setting `shouldCheckForColocatedFragments` to `false`
+8
packages/graphqlsp/CHANGELOG.md
··· 1 1 # @0no-co/graphqlsp 2 2 3 + ## 0.4.0 4 + 5 + ### Minor Changes 6 + 7 + - Add a `message` diagnostic when we see an import from a file that has `fragment` exports we'll warn you when they are not imported, this because of the assumption that to use this file one would have to adhere to the data requirements of said file. 8 + You can choose to disable this setting by setting `shouldCheckForColocatedFragments` to `false` 9 + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#42](https://github.com/0no-co/GraphQLSP/pull/42)) 10 + 3 11 ## 0.3.0 4 12 5 13 ### Minor Changes
+1 -1
packages/graphqlsp/package.json
··· 1 1 { 2 2 "name": "@0no-co/graphqlsp", 3 - "version": "0.3.0", 3 + "version": "0.4.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",