···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.
···7878 // is more defined we will need to use the ts.Symbol to support re-exporting
7979 // this function by means of "export const peristed = graphql.persisted".
8080 if (
8181- !ts.isCallExpression(callExpression) ||
8181+ (callExpression && !ts.isCallExpression(callExpression)) ||
8282 !isPersistedCall(callExpression.expression) ||
8383 (!callExpression.typeArguments && !callExpression.arguments[1])
8484 )