diff options
Diffstat (limited to 'graphql/handler.go')
-rw-r--r-- | graphql/handler.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphql/handler.go b/graphql/handler.go index 4843fff9..7dbb7a0f 100644 --- a/graphql/handler.go +++ b/graphql/handler.go @@ -3,7 +3,7 @@ package graphql import "github.com/graphql-go/handler" func NewHandler() (*handler.Handler, error) { - schema, err := graphqlSchema() + schema, err := newGraphqlSchema() if err != nil { return nil, err |