Mirror: TypeScript LSP plugin that finds GraphQL documents in your code and provides diagnostics, auto-complete and hover-information.
1import { graphql } from './todo'; 2 3// prettier-ignore 4const x = graphql(` 5 query Todo($id: ID!) { 6 todo(id: $id) { 7 id 8 9 } 10 } 11`);