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 __Schema = "__Schema", 29 __Type = "__Type", 30 __TypeKind = "__TypeKind", 31 __listType = "__listType", 32 __nonNullType = "__nonNullType", 33 __schema = "__schema", 34 __type = "__type", 35 __typename = "__typename", 36 args = "args", 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 locations = "locations", 49 mutation = "mutation", 50 mutationType = "mutationType", 51 name = "name", 52 null_ = "null", 53 ofType = "ofType", 54 ofTypeName = "ofTypeName", 55 opCmp = "opCmp", 56 opEquals = "opEquals", 57 possibleTypes = "possibleTypes", 58 possibleTypesNames = "possibleTypesNames", 59 query = "query", 60 queryType = "queryType", 61 string_ = "string", 62 subscription = "subscription", 63 subscriptionType = "subscriptionType", 64 toHash = "toHash", 65 toString = "toString", 66 true_ = "true", 67 type = "type", 68 typenameOrig = "typenameOrig", 69 types = "types", 70 }