Created
August 7, 2017 19:30
-
-
Save Chun-Yang/6cbc7d085805f763746b53fef35e3c15 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { makeExecutableSchema } from 'graphql-tools'; | |
const typeDefs = ` | |
type Query { | |
} | |
type Mutation { | |
} | |
`; | |
const resolvers = { | |
Query: { | |
}, | |
Mutation: { | |
} | |
}; | |
const graphqlSchema = makeExecutableSchema({ | |
typeDefs, | |
resolvers, | |
}); | |
export default graphqlSchema; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment