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