1 module graphql.constants;
2 
3 enum Constants {
4 	ENUM = "ENUM",
5 	ENUM_DEPRECATIONREASON_TODO = "ENUM_DEPRECATIONREASON_TODO",
6 	ENUM_DESCRIPTION_TODO = "ENUM_DESCRIPTION_TODO",
7 	Float = "Float",
8 	INPUT_OBJECT = "INPUT_OBJECT",
9 	Int = "Int",
10 	LIST = "LIST",
11 	List = "List",
12 	Mutation = "Mutation",
13 	NON_NULL = "NON_NULL",
14 	NonNull = "NonNull",
15 	Nullable = "Nullable",
16 	OBJECT = "OBJECT",
17 	Operation = "Operation",
18 	Query = "Query",
19 	Schema = "Schema",
20 	String = "String",
21 	Subscription = "Subscription",
22 	UNION = "UNION",
23 	__Directive = "__Directive",
24 	__DirectiveLocation = "__DirectiveLocation",
25 	__EnumValue = "__EnumValue",
26 	__Field = "__Field",
27 	__InputValue = "__InputValue",
28 	__Type = "__Type",
29 	__TypeKind = "__TypeKind",
30 	__listType = "__listType",
31 	__nonNullType = "__nonNullType",
32 	__schema = "__schema",
33 	__type = "__type",
34 	__typename = "__typename",
35 	args = "args",
36 	data = "data",
37 	defaultValue = "defaultValue",
38 	deprecationReason = "deprecationReason",
39 	description = "description",
40 	directives = "directives",
41 	enumValues = "enumValues",
42 	fields = "fields",
43 	inputFields = "inputFields",
44 	interfaces = "interfaces",
45 	interfacesNames = "interfacesNames",
46 	isDeprecated = "isDeprecated",
47 	kind = "kind",
48 	errors = "errors",
49 	locations = "locations",
50 	mutation = "mutation",
51 	mutationType = "mutationType",
52 	name = "name",
53 	null_ = "null",
54 	ofType = "ofType",
55 	ofTypeName = "ofTypeName",
56 	opCmp = "opCmp",
57 	opEquals = "opEquals",
58 	possibleTypes = "possibleTypes",
59 	possibleTypesNames = "possibleTypesNames",
60 	query = "query",
61 	queryType = "queryType",
62 	string_ = "string",
63 	subscription = "subscription",
64 	subscriptionType = "subscriptionType",
65 	toHash = "toHash",
66 	toString = "toString",
67 	true_ = "true",
68 	type = "type",
69 	typenameOrig = "typenameOrig",
70 	types = "types",
71 }