Mirror: TypeScript LSP plugin that finds GraphQL documents in your code and provides diagnostics, auto-complete and hover-information.
1import { graphql } from './gql/gql'; 2 3// prettier-ignore 4export const PokemonFields = graphql(` 5 fragment pokemonFields on Pokemon { 6 id 7 name 8 fleeRate 9 10 } 11`); 12 13export const Pokemon = () => {};