1import { initGraphQLTada } from 'gql.tada';
2import type { introspection } from '../introspection.d.ts';
3
4export const graphql = initGraphQLTada<{
5 introspection: introspection;
6}>();
7
8export type { FragmentOf, ResultOf, VariablesOf } from 'gql.tada';
9export { readFragment } from 'gql.tada';