Mirror: TypeScript LSP plugin that finds GraphQL documents in your code and provides diagnostics, auto-complete and hover-information.
at main 302 B view raw
1import { initGraphQLTada } from 'gql.tada'; 2import type { introspection } from './introspection'; 3 4export const graphql = initGraphQLTada<{ 5 introspection: introspection; 6}>(); 7 8export type { FragmentOf, ResultOf, VariablesOf } from 'gql.tada'; 9export { readFragment, maskFragments } from 'gql.tada';