graphql
Version:
A Query Language and Runtime which can target any service.
1 lines • 13 kB
Source Map (JSON)
{"version":3,"file":"kinds_.js","sourceRoot":"","sources":["../../src/language/kinds_.ts"],"names":[],"mappings":"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","sourcesContent":["/** @category Kinds */\n\n/* eslint-disable @typescript-eslint/no-redeclare */\n\n/** AST kind for name nodes. */\nexport const NAME = 'Name';\n/** Type of the `Kind.NAME` AST kind value. */\nexport type NAME = typeof NAME;\n\n/** AST kind for document nodes. */\nexport const DOCUMENT = 'Document';\n/** Type of the `Kind.DOCUMENT` AST kind value. */\nexport type DOCUMENT = typeof DOCUMENT;\n\n/** AST kind for operation definition nodes. */\nexport const OPERATION_DEFINITION = 'OperationDefinition';\n/** Type of the `Kind.OPERATION_DEFINITION` AST kind value. */\nexport type OPERATION_DEFINITION = typeof OPERATION_DEFINITION;\n\n/** AST kind for variable definition nodes. */\nexport const VARIABLE_DEFINITION = 'VariableDefinition';\n/** Type of the `Kind.VARIABLE_DEFINITION` AST kind value. */\nexport type VARIABLE_DEFINITION = typeof VARIABLE_DEFINITION;\n\n/** AST kind for selection set nodes. */\nexport const SELECTION_SET = 'SelectionSet';\n/** Type of the `Kind.SELECTION_SET` AST kind value. */\nexport type SELECTION_SET = typeof SELECTION_SET;\n\n/** AST kind for field selection nodes. */\nexport const FIELD = 'Field';\n/** Type of the `Kind.FIELD` AST kind value. */\nexport type FIELD = typeof FIELD;\n\n/** AST kind for argument nodes. */\nexport const ARGUMENT = 'Argument';\n/** Type of the `Kind.ARGUMENT` AST kind value. */\nexport type ARGUMENT = typeof ARGUMENT;\n\n/** AST kind for fragment argument nodes. */\nexport const FRAGMENT_ARGUMENT = 'FragmentArgument';\n/** Type of the `Kind.FRAGMENT_ARGUMENT` AST kind value. */\nexport type FRAGMENT_ARGUMENT = typeof FRAGMENT_ARGUMENT;\n\n/** AST kind for fragment spread nodes. */\nexport const FRAGMENT_SPREAD = 'FragmentSpread';\n/** Type of the `Kind.FRAGMENT_SPREAD` AST kind value. */\nexport type FRAGMENT_SPREAD = typeof FRAGMENT_SPREAD;\n\n/** AST kind for inline fragment nodes. */\nexport const INLINE_FRAGMENT = 'InlineFragment';\n/** Type of the `Kind.INLINE_FRAGMENT` AST kind value. */\nexport type INLINE_FRAGMENT = typeof INLINE_FRAGMENT;\n\n/** AST kind for fragment definition nodes. */\nexport const FRAGMENT_DEFINITION = 'FragmentDefinition';\n/** Type of the `Kind.FRAGMENT_DEFINITION` AST kind value. */\nexport type FRAGMENT_DEFINITION = typeof FRAGMENT_DEFINITION;\n\n/** AST kind for variable reference nodes. */\nexport const VARIABLE = 'Variable';\n/** Type of the `Kind.VARIABLE` AST kind value. */\nexport type VARIABLE = typeof VARIABLE;\n\n/** AST kind for integer value nodes. */\nexport const INT = 'IntValue';\n/** Type of the `Kind.INT` AST kind value. */\nexport type INT = typeof INT;\n\n/** AST kind for floating-point value nodes. */\nexport const FLOAT = 'FloatValue';\n/** Type of the `Kind.FLOAT` AST kind value. */\nexport type FLOAT = typeof FLOAT;\n\n/** AST kind for string value nodes. */\nexport const STRING = 'StringValue';\n/** Type of the `Kind.STRING` AST kind value. */\nexport type STRING = typeof STRING;\n\n/** AST kind for boolean value nodes. */\nexport const BOOLEAN = 'BooleanValue';\n/** Type of the `Kind.BOOLEAN` AST kind value. */\nexport type BOOLEAN = typeof BOOLEAN;\n\n/** AST kind for null value nodes. */\nexport const NULL = 'NullValue';\n/** Type of the `Kind.NULL` AST kind value. */\nexport type NULL = typeof NULL;\n\n/** AST kind for enum value nodes. */\nexport const ENUM = 'EnumValue';\n/** Type of the `Kind.ENUM` AST kind value. */\nexport type ENUM = typeof ENUM;\n\n/** AST kind for list value nodes. */\nexport const LIST = 'ListValue';\n/** Type of the `Kind.LIST` AST kind value. */\nexport type LIST = typeof LIST;\n\n/** AST kind for object value nodes. */\nexport const OBJECT = 'ObjectValue';\n/** Type of the `Kind.OBJECT` AST kind value. */\nexport type OBJECT = typeof OBJECT;\n\n/** AST kind for object field nodes. */\nexport const OBJECT_FIELD = 'ObjectField';\n/** Type of the `Kind.OBJECT_FIELD` AST kind value. */\nexport type OBJECT_FIELD = typeof OBJECT_FIELD;\n\n/** AST kind for directive nodes. */\nexport const DIRECTIVE = 'Directive';\n/** Type of the `Kind.DIRECTIVE` AST kind value. */\nexport type DIRECTIVE = typeof DIRECTIVE;\n\n/** AST kind for named type reference nodes. */\nexport const NAMED_TYPE = 'NamedType';\n/** Type of the `Kind.NAMED_TYPE` AST kind value. */\nexport type NAMED_TYPE = typeof NAMED_TYPE;\n\n/** AST kind for list type reference nodes. */\nexport const LIST_TYPE = 'ListType';\n/** Type of the `Kind.LIST_TYPE` AST kind value. */\nexport type LIST_TYPE = typeof LIST_TYPE;\n\n/** AST kind for non-null type reference nodes. */\nexport const NON_NULL_TYPE = 'NonNullType';\n/** Type of the `Kind.NON_NULL_TYPE` AST kind value. */\nexport type NON_NULL_TYPE = typeof NON_NULL_TYPE;\n\n/** AST kind for schema definition nodes. */\nexport const SCHEMA_DEFINITION = 'SchemaDefinition';\n/** Type of the `Kind.SCHEMA_DEFINITION` AST kind value. */\nexport type SCHEMA_DEFINITION = typeof SCHEMA_DEFINITION;\n\n/** AST kind for operation type definition nodes. */\nexport const OPERATION_TYPE_DEFINITION = 'OperationTypeDefinition';\n/** Type of the `Kind.OPERATION_TYPE_DEFINITION` AST kind value. */\nexport type OPERATION_TYPE_DEFINITION = typeof OPERATION_TYPE_DEFINITION;\n\n/** AST kind for scalar type definition nodes. */\nexport const SCALAR_TYPE_DEFINITION = 'ScalarTypeDefinition';\n/** Type of the `Kind.SCALAR_TYPE_DEFINITION` AST kind value. */\nexport type SCALAR_TYPE_DEFINITION = typeof SCALAR_TYPE_DEFINITION;\n\n/** AST kind for object type definition nodes. */\nexport const OBJECT_TYPE_DEFINITION = 'ObjectTypeDefinition';\n/** Type of the `Kind.OBJECT_TYPE_DEFINITION` AST kind value. */\nexport type OBJECT_TYPE_DEFINITION = typeof OBJECT_TYPE_DEFINITION;\n\n/** AST kind for field definition nodes. */\nexport const FIELD_DEFINITION = 'FieldDefinition';\n/** Type of the `Kind.FIELD_DEFINITION` AST kind value. */\nexport type FIELD_DEFINITION = typeof FIELD_DEFINITION;\n\n/** AST kind for input value definition nodes. */\nexport const INPUT_VALUE_DEFINITION = 'InputValueDefinition';\n/** Type of the `Kind.INPUT_VALUE_DEFINITION` AST kind value. */\nexport type INPUT_VALUE_DEFINITION = typeof INPUT_VALUE_DEFINITION;\n\n/** AST kind for interface type definition nodes. */\nexport const INTERFACE_TYPE_DEFINITION = 'InterfaceTypeDefinition';\n/** Type of the `Kind.INTERFACE_TYPE_DEFINITION` AST kind value. */\nexport type INTERFACE_TYPE_DEFINITION = typeof INTERFACE_TYPE_DEFINITION;\n\n/** AST kind for union type definition nodes. */\nexport const UNION_TYPE_DEFINITION = 'UnionTypeDefinition';\n/** Type of the `Kind.UNION_TYPE_DEFINITION` AST kind value. */\nexport type UNION_TYPE_DEFINITION = typeof UNION_TYPE_DEFINITION;\n\n/** AST kind for enum type definition nodes. */\nexport const ENUM_TYPE_DEFINITION = 'EnumTypeDefinition';\n\n/** AST kind for enum value definition nodes. */\nexport const ENUM_VALUE_DEFINITION = 'EnumValueDefinition';\n/** Type of the `Kind.ENUM_VALUE_DEFINITION` AST kind value. */\nexport type ENUM_VALUE_DEFINITION = typeof ENUM_VALUE_DEFINITION;\n\n/** AST kind for input object type definition nodes. */\nexport const INPUT_OBJECT_TYPE_DEFINITION = 'InputObjectTypeDefinition';\n/** Type of the `Kind.INPUT_OBJECT_TYPE_DEFINITION` AST kind value. */\nexport type INPUT_OBJECT_TYPE_DEFINITION = typeof INPUT_OBJECT_TYPE_DEFINITION;\n\n/** AST kind for directive definition nodes. */\nexport const DIRECTIVE_DEFINITION = 'DirectiveDefinition';\n/** Type of the `Kind.DIRECTIVE_DEFINITION` AST kind value. */\nexport type DIRECTIVE_DEFINITION = typeof DIRECTIVE_DEFINITION;\n\n/** AST kind for schema extension nodes. */\nexport const SCHEMA_EXTENSION = 'SchemaExtension';\n/** Type of the `Kind.SCHEMA_EXTENSION` AST kind value. */\nexport type SCHEMA_EXTENSION = typeof SCHEMA_EXTENSION;\n\n/** AST kind for directive extension nodes. */\nexport const DIRECTIVE_EXTENSION = 'DirectiveExtension';\n/** Type of the `Kind.DIRECTIVE_EXTENSION` AST kind value. */\nexport type DIRECTIVE_EXTENSION = typeof DIRECTIVE_EXTENSION;\n\n/** AST kind for scalar type extension nodes. */\nexport const SCALAR_TYPE_EXTENSION = 'ScalarTypeExtension';\n/** Type of the `Kind.SCALAR_TYPE_EXTENSION` AST kind value. */\nexport type SCALAR_TYPE_EXTENSION = typeof SCALAR_TYPE_EXTENSION;\n\n/** AST kind for object type extension nodes. */\nexport const OBJECT_TYPE_EXTENSION = 'ObjectTypeExtension';\n/** Type of the `Kind.OBJECT_TYPE_EXTENSION` AST kind value. */\nexport type OBJECT_TYPE_EXTENSION = typeof OBJECT_TYPE_EXTENSION;\n\n/** AST kind for interface type extension nodes. */\nexport const INTERFACE_TYPE_EXTENSION = 'InterfaceTypeExtension';\n/** Type of the `Kind.INTERFACE_TYPE_EXTENSION` AST kind value. */\nexport type INTERFACE_TYPE_EXTENSION = typeof INTERFACE_TYPE_EXTENSION;\n\n/** AST kind for union type extension nodes. */\nexport const UNION_TYPE_EXTENSION = 'UnionTypeExtension';\n/** Type of the `Kind.UNION_TYPE_EXTENSION` AST kind value. */\nexport type UNION_TYPE_EXTENSION = typeof UNION_TYPE_EXTENSION;\n\n/** AST kind for enum type extension nodes. */\nexport const ENUM_TYPE_EXTENSION = 'EnumTypeExtension';\n/** Type of the `Kind.ENUM_TYPE_EXTENSION` AST kind value. */\nexport type ENUM_TYPE_EXTENSION = typeof ENUM_TYPE_EXTENSION;\n\n/** AST kind for input object type extension nodes. */\nexport const INPUT_OBJECT_TYPE_EXTENSION = 'InputObjectTypeExtension';\n/** Type of the `Kind.INPUT_OBJECT_TYPE_EXTENSION` AST kind value. */\nexport type INPUT_OBJECT_TYPE_EXTENSION = typeof INPUT_OBJECT_TYPE_EXTENSION;\n\n/** AST kind for type coordinate nodes. */\nexport const TYPE_COORDINATE = 'TypeCoordinate';\n/** Type of the `Kind.TYPE_COORDINATE` AST kind value. */\nexport type TYPE_COORDINATE = typeof TYPE_COORDINATE;\n\n/** AST kind for member coordinate nodes. */\nexport const MEMBER_COORDINATE = 'MemberCoordinate';\n/** Type of the `Kind.MEMBER_COORDINATE` AST kind value. */\nexport type MEMBER_COORDINATE = typeof MEMBER_COORDINATE;\n\n/** AST kind for argument coordinate nodes. */\nexport const ARGUMENT_COORDINATE = 'ArgumentCoordinate';\n/** Type of the `Kind.ARGUMENT_COORDINATE` AST kind value. */\nexport type ARGUMENT_COORDINATE = typeof ARGUMENT_COORDINATE;\n\n/** AST kind for directive coordinate nodes. */\nexport const DIRECTIVE_COORDINATE = 'DirectiveCoordinate';\n/** Type of the `Kind.DIRECTIVE_COORDINATE` AST kind value. */\nexport type DIRECTIVE_COORDINATE = typeof DIRECTIVE_COORDINATE;\n\n/** AST kind for directive argument coordinate nodes. */\nexport const DIRECTIVE_ARGUMENT_COORDINATE = 'DirectiveArgumentCoordinate';\n/** Type of the `Kind.DIRECTIVE_ARGUMENT_COORDINATE` AST kind value. */\nexport type DIRECTIVE_ARGUMENT_COORDINATE =\n typeof DIRECTIVE_ARGUMENT_COORDINATE;\n"]}