mapSchema.d.cts 626 B

1234567
  1. import { GraphQLObjectType, GraphQLSchema, GraphQLInputObjectType, GraphQLInterfaceType, GraphQLEnumType } from 'graphql';
  2. import { SchemaMapper } from './Interfaces.cjs';
  3. export declare function mapSchema(schema: GraphQLSchema, schemaMapper?: SchemaMapper): GraphQLSchema;
  4. export declare function correctASTNodes(type: GraphQLObjectType): GraphQLObjectType;
  5. export declare function correctASTNodes(type: GraphQLInterfaceType): GraphQLInterfaceType;
  6. export declare function correctASTNodes(type: GraphQLInputObjectType): GraphQLInputObjectType;
  7. export declare function correctASTNodes(type: GraphQLEnumType): GraphQLEnumType;