joyent-portal/legacy/docker-graphql/src/schema/index.js

10 lines
202 B
JavaScript
Raw Normal View History

2017-04-28 00:47:32 +03:00
const graphql = require('graphql');
2017-04-28 01:11:12 +03:00
// const mutation = require('./mutations');
2017-04-28 00:47:32 +03:00
const query = require('./queries');
const { GraphQLSchema } = graphql;
module.exports = new GraphQLSchema({
query
});