1---
2'@0no-co/graphqlsp': minor
3---
4
5Add support for defining multiple indepenent schemas through a new config property called `schemas`, you can
6pass 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
26The LSP will depending on what `graphql()` template you use figure out what API you are reaching out to.