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