2016-10-10 18:37:26 +03:00
|
|
|
const RoleType = require('../types/role');
|
|
|
|
const graphql = require('graphql');
|
|
|
|
const api = require('../../api');
|
|
|
|
|
2017-04-27 21:26:15 +03:00
|
|
|
const { GraphQLList, GraphQLID } = graphql;
|
2016-10-10 18:37:26 +03:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
type: new GraphQLList(RoleType),
|
|
|
|
args: {
|
|
|
|
id: {
|
|
|
|
type: GraphQLID,
|
|
|
|
description: '`id` or `name` of the `RoleType` to filter'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
resolve(root, args) {
|
2017-04-27 21:26:15 +03:00
|
|
|
const { list, get } = api.roles;
|
2016-10-10 18:37:26 +03:00
|
|
|
|
2017-04-27 21:26:15 +03:00
|
|
|
return !args.id ? list() : get(args).then(role => [role]);
|
2016-10-10 18:37:26 +03:00
|
|
|
}
|
|
|
|
};
|