UNPKG

t-graphql

Version:

typed GraphQL - end-to-end type-safe GraphQL for TypeScript. Think tRPC, but GraphQL

22 lines (21 loc) 1.38 kB
export { CustomScalarType, scalarType } from './CustomScalarType'; export { enumType } from './EnumType'; export { generateQueryString } from './generators/query-generator'; export { generateSchemaString } from './generators/schema-generator'; export { useMutation } from './hooks/useMutation'; export { useQuery } from './hooks/useQuery'; export { useSubscription } from './hooks/useSubscription'; export { InputObjectType, inputType } from './inputs/InputObjectType'; export { VariableInput, variable } from './inputs/VariableInput'; export { ObjectType, objectType } from './outputs/ObjectType'; export { UnionType, unionType } from './outputs/UnionType'; export { ObjectFragmentQueryType, fragmentType } from './queries/ObjectFragmentQueryType'; export { ObjectQueryType, mutationType, queryType, subscriptionType } from './queries/ObjectQueryType'; export type { CompleteSchemaResolvers } from './resolvers/CompleteSchemaResolvers.type'; export type { SchemaResolvers } from './resolvers/SchemaResolvers.type'; export { SchemaType, schemaType } from './SchemaType'; export type { QueryResult } from './types/QueryResult.type'; export type { QueryVariables } from './types/QueryVariables.type'; export { mergeObjectTypes } from './utils/mergeObjectTypes'; export { mergeResolvers } from './utils/mergeResolvers'; export { mergeSchemaTypes } from './utils/mergeSchemaTypes';