joyent-portal/cloudapi-graphql/src/schema/index.js
Tom Gallacher e71fc374bc triton-graphql -> Joyent cloudapi-graphql (#22)
This brings the name of the application inline with the terminology in
the Joyent triton / cloud api documentation.
2016-10-14 12:51:09 +01:00

13 lines
213 B
JavaScript

const graphql = require('graphql');
const mutation = require('./mutations');
const query = require('./queries');
const {
GraphQLSchema
} = graphql;
module.exports = new GraphQLSchema({
query,
mutation
});