aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/graphql-go/graphql/language/kinds/kinds.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-07-29 18:58:42 +0200
committerMichael Muré <batolettre@gmail.com>2018-07-29 18:58:42 +0200
commit8fa0b258ac89781dae269790a4bde09cbcd2f324 (patch)
treeb9bcf0826f5739f128de52123447cede23291c02 /vendor/github.com/graphql-go/graphql/language/kinds/kinds.go
parent6363518c85cbd8247a5f6507b8a1dd3903cfb71d (diff)
downloadgit-bug-8fa0b258ac89781dae269790a4bde09cbcd2f324.tar.gz
cleaning
Diffstat (limited to 'vendor/github.com/graphql-go/graphql/language/kinds/kinds.go')
-rw-r--r--vendor/github.com/graphql-go/graphql/language/kinds/kinds.go59
1 files changed, 0 insertions, 59 deletions
diff --git a/vendor/github.com/graphql-go/graphql/language/kinds/kinds.go b/vendor/github.com/graphql-go/graphql/language/kinds/kinds.go
deleted file mode 100644
index 40bc994e..00000000
--- a/vendor/github.com/graphql-go/graphql/language/kinds/kinds.go
+++ /dev/null
@@ -1,59 +0,0 @@
-package kinds
-
-const (
- // Name
- Name = "Name"
-
- // Document
- Document = "Document"
- OperationDefinition = "OperationDefinition"
- VariableDefinition = "VariableDefinition"
- Variable = "Variable"
- SelectionSet = "SelectionSet"
- Field = "Field"
- Argument = "Argument"
-
- // Fragments
- FragmentSpread = "FragmentSpread"
- InlineFragment = "InlineFragment"
- FragmentDefinition = "FragmentDefinition"
-
- // Values
- IntValue = "IntValue"
- FloatValue = "FloatValue"
- StringValue = "StringValue"
- BooleanValue = "BooleanValue"
- EnumValue = "EnumValue"
- ListValue = "ListValue"
- ObjectValue = "ObjectValue"
- ObjectField = "ObjectField"
-
- // Directives
- Directive = "Directive"
-
- // Types
- Named = "Named" // previously NamedType
- List = "List" // previously ListType
- NonNull = "NonNull" // previously NonNull
-
- // Type System Definitions
- SchemaDefinition = "SchemaDefinition"
- OperationTypeDefinition = "OperationTypeDefinition"
-
- // Types Definitions
- ScalarDefinition = "ScalarDefinition" // previously ScalarTypeDefinition
- ObjectDefinition = "ObjectDefinition" // previously ObjectTypeDefinition
- FieldDefinition = "FieldDefinition"
- InputValueDefinition = "InputValueDefinition"
- InterfaceDefinition = "InterfaceDefinition" // previously InterfaceTypeDefinition
- UnionDefinition = "UnionDefinition" // previously UnionTypeDefinition
- EnumDefinition = "EnumDefinition" // previously EnumTypeDefinition
- EnumValueDefinition = "EnumValueDefinition"
- InputObjectDefinition = "InputObjectDefinition" // previously InputObjectTypeDefinition
-
- // Types Extensions
- TypeExtensionDefinition = "TypeExtensionDefinition"
-
- // Directive Definitions
- DirectiveDefinition = "DirectiveDefinition"
-)