···11----
22-'@0no-co/graphqlsp': minor
33----
44-55-Add support for defining multiple indepenent schemas through a new config property called `schemas`, you can
66-pass a config like the following:
77-88-```json
99-{
1010- "name": "@0no-co/graphqlsp",
1111- "schemas": [
1212- {
1313- "name": "pokemons",
1414- "schema": "./pokemons.graphql",
1515- "tadaOutputLocation": "./pokemons-introspection.d.ts"
1616- },
1717- {
1818- "name": "weather",
1919- "schema": "./weather.graphql",
2020- "tadaOutputLocation": "./weather-introspection.d.ts"
2121- }
2222- ]
2323-}
2424-```
2525-2626-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
···11----
22-'@0no-co/graphqlsp': minor
33----
44-55-Expose `findAllCallExpressions` on `@0no-co/graphqlsp/api`
-5
.changeset/young-phones-search.md
···11----
22-'@0no-co/graphqlsp': minor
33----
44-55-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
···11# @0no-co/graphqlsp
2233+## 1.12.0
44+55+### Minor Changes
66+77+- Add support for defining multiple indepenent schemas through a new config property called `schemas`, you can
88+ pass a config like the following:
99+ ```json
1010+ {
1111+ "name": "@0no-co/graphqlsp",
1212+ "schemas": [
1313+ {
1414+ "name": "pokemons",
1515+ "schema": "./pokemons.graphql",
1616+ "tadaOutputLocation": "./pokemons-introspection.d.ts"
1717+ },
1818+ {
1919+ "name": "weather",
2020+ "schema": "./weather.graphql",
2121+ "tadaOutputLocation": "./weather-introspection.d.ts"
2222+ }
2323+ ]
2424+ }
2525+ ```
2626+ The LSP will depending on what `graphql()` template you use figure out what API you are reaching out to.
2727+ Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#303](https://github.com/0no-co/GraphQLSP/pull/303))
2828+- Expose `findAllCallExpressions` on `@0no-co/graphqlsp/api`
2929+ Submitted by [@kitten](https://github.com/kitten) (See [#308](https://github.com/0no-co/GraphQLSP/pull/308))
3030+- Expand support for `gql.tada` API. GraphQLSP will now recognize `graphql()`/`graphql.persisted()` calls regardless of variable naming and support more obscure usage patterns
3131+ Submitted by [@kitten](https://github.com/kitten) (See [#309](https://github.com/0no-co/GraphQLSP/pull/309))
3232+333## 1.11.0
434535### Minor Changes
+1-1
packages/graphqlsp/package.json
···11{
22 "name": "@0no-co/graphqlsp",
33- "version": "1.11.0",
33+ "version": "1.12.0",
44 "description": "TypeScript LSP plugin that finds GraphQL documents in your code and provides hints and auto-generates types.",
55 "main": "./dist/graphqlsp",
66 "module": "./dist/graphqlsp.mjs",