Mirror: TypeScript LSP plugin that finds GraphQL documents in your code and provides diagnostics, auto-complete and hover-information.
1import * as pokemon from './pokemon'; 2 3// prettier-ignore 4const x = pokemon.graphql(` 5 query Pokemons($limit: Int!) { 6 pokemons(limit: $limit) { 7 id 8 name 9 fleeRate 10 classification 11 __typename 12 } 13 } 14`);