diff --git a/content/GraphQL-Binding/04-Creating-your-own-Binding.md b/content/GraphQL-Binding/04-Creating-your-own-Binding.md index 9ed648d..475cdd7 100644 --- a/content/GraphQL-Binding/04-Creating-your-own-Binding.md +++ b/content/GraphQL-Binding/04-Creating-your-own-Binding.md @@ -118,7 +118,7 @@ Note that the CLI requires you to make an executable instance of the GraphQL sch const fetch = require('node-fetch') const { HttpLink } = require('apollo-link-http') const { makeRemoteExecutableSchema } = require('graphql-tools') -const typeDefs = require('./user-service.grahpql) +const typeDefs = require('./user-service.grahpql') // Create the `HttpLink` required for the remote executable schema const endpoint = `https://example.org/user-service`