- Notifications
You must be signed in to change notification settings - Fork16
TypeScript LSP plugin that finds GraphQL documents in your code and provides diagnostics, auto-complete and hover-information.
0no-co/GraphQLSP
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
This is a TypeScript LSP Plugin that will recognise documents in yourTypeScript code and help you out with hover-information, diagnostics andauto-complete.
- Hover information showing the decriptions of fields
- Diagnostics for adding fields that don't exist, are deprecated, missmatched argument types, ...
- Auto-complete inside your editor for fields
- Will warn you when you are importing from a file that is exporting fragments that you're not using
Note that this plugin does not do syntax highlighting, for that you still need something likethe VSCode/... plugin
npm install -D @0no-co/graphqlsp
Go to yourtsconfig.json and add
{"compilerOptions": {"plugins": [ {"name":"@0no-co/graphqlsp","schema":"./schema.graphql" } ] }}now restart your TS-server and you should be good to go, ensure you are using theworkspace version of TypeScript. In VSCode you can do so by clicking the bottom rightwhen on a TypeScript file or adding a file likethis.
If you are using VSCode ensure that your editor is usingthe Workspace Version of TypeScriptthis can be done by manually selecting it or adding a
.vscode/config.jsonwith the contents of{"typescript.tsdk":"node_modules/typescript/lib","typescript.enablePromptUseWorkspaceTsdk":true}
Required
schemaallows you to specify a url,.jsonor.graphqlfile as your schema. If you need to specify headers for your introspectionyou can opt into the object notation i.e.{ "schema": { "url": "x", "headers": { "Authorization": "y" } }}
Optional
templateadd an additional template to the defaultsgqlandgraphqltemplateIsCallExpressionthis tells our client that you are usinggraphql('doc')(default: true)when usingfalseit will look for tagged template literalsshouldCheckForColocatedFragmentswhen turned on, this will scan your imports to findunused fragments and provide a message notifying you about them (only works with call-expressions, default: true)trackFieldUsagethis only works with the client-preset, when turned on it will warn you aboutunused fields within the same file. (only works with call-expressions, default: true)tadaOutputLocationwhen usinggql.tadathis can be convenient as it automatically generatesanintrospection.tsfile for you, just give it the directory to output to and you're donetadaDisablePreprocessingthis setting disables the optimisation oftadaOutputto a pre-processed TypeScript type, this is off by default.clientDirectivesthis setting allows you to specify additionalclientDirectiveswhich won't be seen as a missing schema-directive.
Currently the tracking unused fields feature has a few caveats with regards to tracking, first and foremostit will only track the result and the accessed properties in the same file to encouragefragment co-location.
Secondly, we don't track mutations/subscriptions as some folks will add additional fields to properly supportnormalised cache updates.
When we use auseQuery that supportsTypedDocumentNode it will automatically pick up the typingsfrom thequery you provide it. However for fragments this could become a bit more troublesome, theminimal way of providing typings for a fragment would be the following:
import{TypedDocumentNode}from'@graphql-typed-document-node/core';exportconstPokemonFields=gql` fragment pokemonFields on Pokemon { id name }`astypeofimport('./Pokemon.generated').PokemonFieldsFragmentDoc;exportconstPokemon=props=>{constpokemon=useFragment(props.pokemon,PokemonFields);};exportfunctionuseFragment<Type>(data:any,_fragment:TypedDocumentNode<Type>):Type{returndata;}
This is mainly needed in cases where this isn't supported out of the box and mainly serves as a wayfor you to case your types.
BigCommerce | WunderGraph | The Guild |
BeatGig |
Runpnpm i at the root. Openpackages/example by runningcode packages/example or if you want to leveragebreakpoints do it with theTSS_DEBUG_BRK=9559 prefix. When you make changes inpackages/graphqlsp all you needto do is runpnpm i in your other editor and restart theTypeScript server for the changes to apply.
Ensure that both instances of your editor are using the Workspace Version of TypeScript
About
TypeScript LSP plugin that finds GraphQL documents in your code and provides diagnostics, auto-complete and hover-information.
Topics
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Uh oh!
There was an error while loading.Please reload this page.
Contributors12
Uh oh!
There was an error while loading.Please reload this page.