Skip to content
This repository was archived by the owner on Oct 17, 2020. It is now read-only.

Fix typo in "04-Creating-your-own-Binding.md" #20

Open
wants to merge 1 commit into
base: GraphQLBinding
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/GraphQL-Binding/04-Creating-your-own-Binding.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down