aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/resolvers.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-07-19 15:27:55 +0200
committerMichael Muré <batolettre@gmail.com>2018-07-19 15:27:55 +0200
commitf42cf79443fd08f61385761f86ddeb0f914257e6 (patch)
treeb873953785a236342ecf9829e5495add0665d5a2 /graphql/resolvers.go
parent2bbb145801eb3643b4792401a8e891f505fe573e (diff)
downloadgit-bug-f42cf79443fd08f61385761f86ddeb0f914257e6.tar.gz
start of a graphql schema+types
Diffstat (limited to 'graphql/resolvers.go')
-rw-r--r--graphql/resolvers.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/graphql/resolvers.go b/graphql/resolvers.go
new file mode 100644
index 00000000..ef20d0f2
--- /dev/null
+++ b/graphql/resolvers.go
@@ -0,0 +1,7 @@
+package graphql
+
+import "github.com/graphql-go/graphql"
+
+func resolveBug(p graphql.ResolveParams) (interface{}, error) {
+ return "world", nil
+}