Skip to content

Instantly share code, notes, and snippets.

@nicolasdao
Last active March 6, 2018 07:44
Show Gist options
  • Save nicolasdao/5f1f74ac477a192085a113875d4abfcd to your computer and use it in GitHub Desktop.
Save nicolasdao/5f1f74ac477a192085a113875d4abfcd to your computer and use it in GitHub Desktop.
// index.js
const { makeExecutableSchema } = require('graphql-tools')
const glue = require('schemaglue')
const { schema, resolver } = glue('src/graphql')
const executableSchema = makeExecutableSchema({
typeDefs: schema,
resolvers: resolver
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment