Skip to content

Instantly share code, notes, and snippets.

@rajatgeekyants
Created June 20, 2018 12:31
Show Gist options
  • Save rajatgeekyants/12c38fbe6b5fa381313912edcd211641 to your computer and use it in GitHub Desktop.
Save rajatgeekyants/12c38fbe6b5fa381313912edcd211641 to your computer and use it in GitHub Desktop.
import {makeExecutableSchema} from 'graphql-tools';
import {resolvers} from './resolvers';
const typeDefs = `
type Query {
name: String!
}
`
export default makeExecutableSchema({
typeDefs,
resolvers
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment