Install
npm install assertql -S
Usage
import _ from 'lodash';
import {
GraphQLObjectType,
GraphQLString,
GraphQLInt,
} from 'graphql';
import { withAssertions } from 'assertql';
const loggedIn = (data, args, context, info) => {
if (!_.get(info, 'rootValue.currentUser.id')) {
throw new Error('User dose not have enough permission!');
}
};
const hasRole = (role) => (data, args, context, info) => {
const roles = _.get(info, 'rootValue.currentUser.roles', []);
if (!_.includes(roles, role)) {
throw new Error('User dose not have enough permission!');
}
};
const isAdmin = hasRole('admin');
const isMe = (data, args, context, info) => {
if (data.id !== _.get(info, 'rootValue.currentUser.id'))
throw new Error('User dose not have enough permission!');
}
};
const userType = new GraphQLObjectType({
name: 'User',
fields: withAssertions({
loggedIn,
isAdmin,
isMe,
}, {
id: {
type: GraphQLString,
},
email: {
type: GraphQLString,
assertions: ['loggedIn', 'isMe', 'isAdmin'],
},
point: {
type: GraphQLInt,
assertions: ['isMe', 'isAdmin'],
},
}),
});