-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathkinds_.ts
110 lines (99 loc) · 4.64 KB
/
kinds_.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/* eslint-disable @typescript-eslint/no-redeclare */
/** Name */
export const NAME = 'Name';
export type NAME = typeof NAME;
/** Document */
export const DOCUMENT = 'Document';
export type DOCUMENT = typeof DOCUMENT;
export const OPERATION_DEFINITION = 'OperationDefinition';
export type OPERATION_DEFINITION = typeof OPERATION_DEFINITION;
export const VARIABLE_DEFINITION = 'VariableDefinition';
export type VARIABLE_DEFINITION = typeof VARIABLE_DEFINITION;
export const SELECTION_SET = 'SelectionSet';
export type SELECTION_SET = typeof SELECTION_SET;
export const FIELD = 'Field';
export type FIELD = typeof FIELD;
export const ARGUMENT = 'Argument';
export type ARGUMENT = typeof ARGUMENT;
export const FRAGMENT_ARGUMENT = 'FragmentArgument';
export type FRAGMENT_ARGUMENT = typeof FRAGMENT_ARGUMENT;
/** Fragments */
export const FRAGMENT_SPREAD = 'FragmentSpread';
export type FRAGMENT_SPREAD = typeof FRAGMENT_SPREAD;
export const INLINE_FRAGMENT = 'InlineFragment';
export type INLINE_FRAGMENT = typeof INLINE_FRAGMENT;
export const FRAGMENT_DEFINITION = 'FragmentDefinition';
export type FRAGMENT_DEFINITION = typeof FRAGMENT_DEFINITION;
/** Values */
export const VARIABLE = 'Variable';
export type VARIABLE = typeof VARIABLE;
export const INT = 'IntValue';
export type INT = typeof INT;
export const FLOAT = 'FloatValue';
export type FLOAT = typeof FLOAT;
export const STRING = 'StringValue';
export type STRING = typeof STRING;
export const BOOLEAN = 'BooleanValue';
export type BOOLEAN = typeof BOOLEAN;
export const NULL = 'NullValue';
export type NULL = typeof NULL;
export const ENUM = 'EnumValue';
export type ENUM = typeof ENUM;
export const LIST = 'ListValue';
export type LIST = typeof LIST;
export const OBJECT = 'ObjectValue';
export type OBJECT = typeof OBJECT;
export const OBJECT_FIELD = 'ObjectField';
export type OBJECT_FIELD = typeof OBJECT_FIELD;
/** Directives */
export const DIRECTIVE = 'Directive';
export type DIRECTIVE = typeof DIRECTIVE;
/** Types */
export const NAMED_TYPE = 'NamedType';
export type NAMED_TYPE = typeof NAMED_TYPE;
export const LIST_TYPE = 'ListType';
export type LIST_TYPE = typeof LIST_TYPE;
export const NON_NULL_TYPE = 'NonNullType';
export type NON_NULL_TYPE = typeof NON_NULL_TYPE;
/** Type System Definitions */
export const SCHEMA_DEFINITION = 'SchemaDefinition';
export type SCHEMA_DEFINITION = typeof SCHEMA_DEFINITION;
export const OPERATION_TYPE_DEFINITION = 'OperationTypeDefinition';
export type OPERATION_TYPE_DEFINITION = typeof OPERATION_TYPE_DEFINITION;
/** Type Definitions */
export const SCALAR_TYPE_DEFINITION = 'ScalarTypeDefinition';
export type SCALAR_TYPE_DEFINITION = typeof SCALAR_TYPE_DEFINITION;
export const OBJECT_TYPE_DEFINITION = 'ObjectTypeDefinition';
export type OBJECT_TYPE_DEFINITION = typeof OBJECT_TYPE_DEFINITION;
export const FIELD_DEFINITION = 'FieldDefinition';
export type FIELD_DEFINITION = typeof FIELD_DEFINITION;
export const INPUT_VALUE_DEFINITION = 'InputValueDefinition';
export type INPUT_VALUE_DEFINITION = typeof INPUT_VALUE_DEFINITION;
export const INTERFACE_TYPE_DEFINITION = 'InterfaceTypeDefinition';
export type INTERFACE_TYPE_DEFINITION = typeof INTERFACE_TYPE_DEFINITION;
export const UNION_TYPE_DEFINITION = 'UnionTypeDefinition';
export type UNION_TYPE_DEFINITION = typeof UNION_TYPE_DEFINITION;
export const ENUM_TYPE_DEFINITION = 'EnumTypeDefinition';
export const ENUM_VALUE_DEFINITION = 'EnumValueDefinition';
export type ENUM_VALUE_DEFINITION = typeof ENUM_VALUE_DEFINITION;
export const INPUT_OBJECT_TYPE_DEFINITION = 'InputObjectTypeDefinition';
export type INPUT_OBJECT_TYPE_DEFINITION = typeof INPUT_OBJECT_TYPE_DEFINITION;
/** Directive Definitions */
export const DIRECTIVE_DEFINITION = 'DirectiveDefinition';
export type DIRECTIVE_DEFINITION = typeof DIRECTIVE_DEFINITION;
/** Type System Extensions */
export const SCHEMA_EXTENSION = 'SchemaExtension';
export type SCHEMA_EXTENSION = typeof SCHEMA_EXTENSION;
/** Type Extensions */
export const SCALAR_TYPE_EXTENSION = 'ScalarTypeExtension';
export type SCALAR_TYPE_EXTENSION = typeof SCALAR_TYPE_EXTENSION;
export const OBJECT_TYPE_EXTENSION = 'ObjectTypeExtension';
export type OBJECT_TYPE_EXTENSION = typeof OBJECT_TYPE_EXTENSION;
export const INTERFACE_TYPE_EXTENSION = 'InterfaceTypeExtension';
export type INTERFACE_TYPE_EXTENSION = typeof INTERFACE_TYPE_EXTENSION;
export const UNION_TYPE_EXTENSION = 'UnionTypeExtension';
export type UNION_TYPE_EXTENSION = typeof UNION_TYPE_EXTENSION;
export const ENUM_TYPE_EXTENSION = 'EnumTypeExtension';
export type ENUM_TYPE_EXTENSION = typeof ENUM_TYPE_EXTENSION;
export const INPUT_OBJECT_TYPE_EXTENSION = 'InputObjectTypeExtension';
export type INPUT_OBJECT_TYPE_EXTENSION = typeof INPUT_OBJECT_TYPE_EXTENSION;