aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/resolvers.go
diff options
context:
space:
mode:
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
+}