joyent-portal/packages/cloudapi-gql/src/endpoint.js
Sérgio Ramos 8295bd6882 chore: initial lerna setup
this shall be a progressive process
2017-05-25 10:56:50 +01:00

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
}));