1 | import type { GraphQLField, GraphQLNamedType } from './definition';
|
2 | import { GraphQLEnumType, GraphQLObjectType } from './definition';
|
3 | export declare const __Schema: GraphQLObjectType;
|
4 | export declare const __Directive: GraphQLObjectType;
|
5 | export declare const __DirectiveLocation: GraphQLEnumType;
|
6 | export declare const __Type: GraphQLObjectType;
|
7 | export declare const __Field: GraphQLObjectType;
|
8 | export declare const __InputValue: GraphQLObjectType;
|
9 | export declare const __EnumValue: GraphQLObjectType;
|
10 | declare enum TypeKind {
|
11 | SCALAR = 'SCALAR',
|
12 | OBJECT = 'OBJECT',
|
13 | INTERFACE = 'INTERFACE',
|
14 | UNION = 'UNION',
|
15 | ENUM = 'ENUM',
|
16 | INPUT_OBJECT = 'INPUT_OBJECT',
|
17 | LIST = 'LIST',
|
18 | NON_NULL = 'NON_NULL',
|
19 | }
|
20 | export { TypeKind };
|
21 | export declare const __TypeKind: GraphQLEnumType;
|
22 |
|
23 |
|
24 |
|
25 |
|
26 | export declare const SchemaMetaFieldDef: GraphQLField<unknown, unknown>;
|
27 | export declare const TypeMetaFieldDef: GraphQLField<unknown, unknown>;
|
28 | export declare const TypeNameMetaFieldDef: GraphQLField<unknown, unknown>;
|
29 | export declare const introspectionTypes: ReadonlyArray<GraphQLNamedType>;
|
30 | export declare function isIntrospectionType(type: GraphQLNamedType): boolean;
|