This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
admin-panel/graphql-types/node_modules/@graphql-tools/utils/mapSchema.d.ts

8 lines
622 B
TypeScript

import { GraphQLObjectType, GraphQLSchema, GraphQLInputObjectType, GraphQLInterfaceType, GraphQLEnumType } from 'graphql';
import { SchemaMapper } from './Interfaces';
export declare function mapSchema(schema: GraphQLSchema, schemaMapper?: SchemaMapper): GraphQLSchema;
export declare function correctASTNodes(type: GraphQLObjectType): GraphQLObjectType;
export declare function correctASTNodes(type: GraphQLInterfaceType): GraphQLInterfaceType;
export declare function correctASTNodes(type: GraphQLInputObjectType): GraphQLInputObjectType;
export declare function correctASTNodes(type: GraphQLEnumType): GraphQLEnumType;