Vulcan/packages/nova-comments/lib/mutations.js

50 lines
1.4 KiB
JavaScript
Raw Normal View History

import Telescope, { newMutation, editMutation, removeMutation } from 'meteor/nova:lib';
2016-11-05 18:37:46 +09:00
import Comments from './collection.js'
import Users from 'meteor/nova:users';
import Events from "meteor/nova:events";
// Resolvers
2016-11-05 18:37:46 +09:00
Comments.mutations = {
commentsNew(root, {comment}, context) {
return newMutation({
collection: context.Comments,
document: comment,
currentUser: context.currentUser,
validate: true
});
2016-11-05 18:37:46 +09:00
},
commentsEdit(root, {commentId, set, unset}, context) {
return editMutation({
collection: context.Comments,
documentId: commentId,
set: set,
unset: unset,
currentUser: context.currentUser,
validate: true
});
},
2016-11-05 18:37:46 +09:00
commentsRemove(root, {commentId}, context) {
return removeMutation({
collection: context.Comments,
documentId: commentId,
currentUser: context.currentUser,
validate: true
});
2016-11-05 18:37:46 +09:00
},
commentsVote(root, {commentId, voteType}, context) {
},
};
// GraphQL mutations
Telescope.graphQL.addMutation('commentsNew(comment: CommentInput) : Comment');
Telescope.graphQL.addMutation('commentsEdit(commentId: String, set: CommentInput, unset: CommentUnsetModifier) : Comment');
Telescope.graphQL.addMutation('commentsRemove(commentId: String) : Comment');
Telescope.graphQL.addMutation('commentsVote(commentId: String, voteType: String) : Comment');
2016-11-05 18:37:46 +09:00
export default Comments.mutations;