mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 02:00:29 +08:00
9 lines
216 B
JavaScript
9 lines
216 B
JavaScript
const tools = require('graphql-tools');
|
|
|
|
const resolvers = require('./resolvers');
|
|
const typeDefs = require('./typeDefs');
|
|
|
|
const schema = tools.makeExecutableSchema({typeDefs, resolvers});
|
|
|
|
module.exports = schema;
|