aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/graphql-go/graphql/language/ast/arguments.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-07-19 14:15:50 +0200
committerMichael Muré <batolettre@gmail.com>2018-07-19 14:15:50 +0200
commita2a50f3de0c428c5a61e6a449191be3c4ded86ac (patch)
tree5ecf4f5f1f26933b42a606b741963fa5f66c85aa /vendor/github.com/graphql-go/graphql/language/ast/arguments.go
parent25fb88d7497b00bbe3dda540efde22ffd3de6e49 (diff)
downloadgit-bug-a2a50f3de0c428c5a61e6a449191be3c4ded86ac.tar.gz
webui: add a primitive graphql handler
Diffstat (limited to 'vendor/github.com/graphql-go/graphql/language/ast/arguments.go')
-rw-r--r--vendor/github.com/graphql-go/graphql/language/ast/arguments.go33
1 files changed, 33 insertions, 0 deletions
diff --git a/vendor/github.com/graphql-go/graphql/language/ast/arguments.go b/vendor/github.com/graphql-go/graphql/language/ast/arguments.go
new file mode 100644
index 00000000..5f7ef0d2
--- /dev/null
+++ b/vendor/github.com/graphql-go/graphql/language/ast/arguments.go
@@ -0,0 +1,33 @@
+package ast
+
+import (
+ "github.com/graphql-go/graphql/language/kinds"
+)
+
+// Argument implements Node
+type Argument struct {
+ Kind string
+ Loc *Location
+ Name *Name
+ Value Value
+}
+
+func NewArgument(arg *Argument) *Argument {
+ if arg == nil {
+ arg = &Argument{}
+ }
+ return &Argument{
+ Kind: kinds.Argument,
+ Loc: arg.Loc,
+ Name: arg.Name,
+ Value: arg.Value,
+ }
+}
+
+func (arg *Argument) GetKind() string {
+ return arg.Kind
+}
+
+func (arg *Argument) GetLoc() *Location {
+ return arg.Loc
+}