| 123456789101112131415 |
- import { initGraphQLTada } from 'gql.tada';
- import type { introspection } from './graphql-env-admin.d.ts';
- export const graphql = initGraphQLTada<{
- disableMasking: true;
- introspection: introspection;
- scalars: {
- DateTime: string;
- JSON: any;
- Money: number;
- };
- }>();
- export { readFragment } from 'gql.tada';
- export type { FragmentOf, ResultOf, VariablesOf } from 'gql.tada';
|