Skip to content

Instantly share code, notes, and snippets.

@gc-codesnippets
Created May 3, 2018 12:36
Show Gist options
  • Select an option

  • Save gc-codesnippets/afec9bd72d63a045af55461adcbe3a1d to your computer and use it in GitHub Desktop.

Select an option

Save gc-codesnippets/afec9bd72d63a045af55461adcbe3a1d to your computer and use it in GitHub Desktop.
const typeDefs = `
type Query {
hello(name: String): String
}
`
const resolvers = {
Query: {
hello: (_, args) => `Hello ${args.name || 'World'}!`,
},
}
export const helloSchema = makeExecutableSchema({ typeDefs, resolvers })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment