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

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
847a476c 1e657c8f

+31 -37
-26
.changeset/light-penguins-explain.md
··· 1 - --- 2 - '@0no-co/graphqlsp': minor 3 - --- 4 - 5 - Add support for defining multiple indepenent schemas through a new config property called `schemas`, you can 6 - pass a config like the following: 7 - 8 - ```json 9 - { 10 - "name": "@0no-co/graphqlsp", 11 - "schemas": [ 12 - { 13 - "name": "pokemons", 14 - "schema": "./pokemons.graphql", 15 - "tadaOutputLocation": "./pokemons-introspection.d.ts" 16 - }, 17 - { 18 - "name": "weather", 19 - "schema": "./weather.graphql", 20 - "tadaOutputLocation": "./weather-introspection.d.ts" 21 - } 22 - ] 23 - } 24 - ``` 25 - 26 - The LSP will depending on what `graphql()` template you use figure out what API you are reaching out to.
-5
.changeset/spicy-garlics-drum.md
··· 1 - --- 2 - '@0no-co/graphqlsp': minor 3 - --- 4 - 5 - Expose `findAllCallExpressions` on `@0no-co/graphqlsp/api`
-5
.changeset/young-phones-search.md
··· 1 - --- 2 - '@0no-co/graphqlsp': minor 3 - --- 4 - 5 - Expand support for `gql.tada` API. GraphQLSP will now recognize `graphql()`/`graphql.persisted()` calls regardless of variable naming and support more obscure usage patterns.
+30
packages/graphqlsp/CHANGELOG.md
··· 1 1 # @0no-co/graphqlsp 2 2 3 + ## 1.12.0 4 + 5 + ### Minor Changes 6 + 7 + - Add support for defining multiple indepenent schemas through a new config property called `schemas`, you can 8 + pass a config like the following: 9 + ```json 10 + { 11 + "name": "@0no-co/graphqlsp", 12 + "schemas": [ 13 + { 14 + "name": "pokemons", 15 + "schema": "./pokemons.graphql", 16 + "tadaOutputLocation": "./pokemons-introspection.d.ts" 17 + }, 18 + { 19 + "name": "weather", 20 + "schema": "./weather.graphql", 21 + "tadaOutputLocation": "./weather-introspection.d.ts" 22 + } 23 + ] 24 + } 25 + ``` 26 + The LSP will depending on what `graphql()` template you use figure out what API you are reaching out to. 27 + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#303](https://github.com/0no-co/GraphQLSP/pull/303)) 28 + - Expose `findAllCallExpressions` on `@0no-co/graphqlsp/api` 29 + Submitted by [@kitten](https://github.com/kitten) (See [#308](https://github.com/0no-co/GraphQLSP/pull/308)) 30 + - Expand support for `gql.tada` API. GraphQLSP will now recognize `graphql()`/`graphql.persisted()` calls regardless of variable naming and support more obscure usage patterns 31 + Submitted by [@kitten](https://github.com/kitten) (See [#309](https://github.com/0no-co/GraphQLSP/pull/309)) 32 + 3 33 ## 1.11.0 4 34 5 35 ### Minor Changes
+1 -1
packages/graphqlsp/package.json
··· 1 1 { 2 2 "name": "@0no-co/graphqlsp", 3 - "version": "1.11.0", 3 + "version": "1.12.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/graphqlsp", 6 6 "module": "./dist/graphqlsp.mjs",