Mirror: TypeScript LSP plugin that finds GraphQL documents in your code and provides diagnostics, auto-complete and hover-information.
1import { gql } from '@urql/core'; 2 3const PostsQuery = gql` 4 query Posts { 5 posts { 6 title 7 } 8 } 9`;