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