joyent-portal/cloudapi-graphql/src/endpoint.js

9 lines
179 B
JavaScript
Raw Normal View History

2016-10-20 04:14:26 +03:00
const graphqlHTTP = require('express-graphql');
const schema = require('./schema');
module.exports = graphqlHTTP(() => ({
schema: schema,
graphiql: true,
pretty: true
}));