Sails models -> GraphQL schema
This module will help you to create GraphQL schema of each model in your Sails application.
It uses Waterline configuration files for creating GraphQL objects and sails.request() method for performing internal requests and resolving queries/mutations.
npm install sails-graphql --save
Quick example
Assume you have two models: Author and Article
module.exports = {
attributes: {
name: {
type: 'string'
},
articles: {
collection: 'article',
via: 'author'
}
}
};
module.exports = {
attributes: {
name: {
type: 'string'
},
slug: {
type: 'string',
unique: true
},
author: {
model: 'author'
}
}
};
Then sails-graphql will generate you the following schema:
import { generateSchema } from 'sails-graphql';
import { printSchema } from 'graphql';
const schema = generateSchema(sails.models);
console.log(printSchema(schema));
Usage
- Make sure you have
sails and graphql installed
- Run
npm install sails-graphql --save
- Create a GraphQLController
import { graphql } from 'graphql';
import { generateSchema } from 'sails-graphql';
let schema = null;
module.exports = {
index(req, res) {
if (!schema) {
schema = generateSchema(sails.models);
}
graphql(
schema,
req.body,
null,
{
request: sails.request,
reqData: {
headers: {}
}
}
).then((result) => {
res.json(result.data);
});
}
};
Try to POST some query to /graphql. That's it!
License
The MIT License (MIT)
Copyright (c) 2016 zhukmj
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.