diff options
author | Michael Muré <batolettre@gmail.com> | 2018-07-19 17:58:45 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-07-19 17:58:45 +0200 |
commit | d7313068fbb95829175fe108352b7b1e99e6fe9d (patch) | |
tree | 64a85eec7983ade7f087040b599fa54908900486 /graphql/schema.go | |
parent | 9f04fc2f7b31aeefa8281aff0d1d40a698f4b627 (diff) | |
download | git-bug-d7313068fbb95829175fe108352b7b1e99e6fe9d.tar.gz |
small cleaning
Diffstat (limited to 'graphql/schema.go')
-rw-r--r-- | graphql/schema.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphql/schema.go b/graphql/schema.go index f8fb9768..e929fb44 100644 --- a/graphql/schema.go +++ b/graphql/schema.go @@ -2,7 +2,7 @@ package graphql import "github.com/graphql-go/graphql" -func graphqlSchema() (graphql.Schema, error) { +func newGraphqlSchema() (graphql.Schema, error) { rootQuery := graphql.ObjectConfig{ Name: "RootQuery", |