8295bd6882
this shall be a progressive process
13 lines
280 B
JavaScript
13 lines
280 B
JavaScript
const { GraphQLSchema } = require('graphql');
|
|
const graphqlHTTP = require('express-graphql');
|
|
const { query, mutation } = require('./schema');
|
|
|
|
module.exports = graphqlHTTP(() => ({
|
|
schema: new GraphQLSchema({
|
|
query,
|
|
mutation
|
|
}),
|
|
graphiql: true,
|
|
pretty: true
|
|
}));
|