Files
talk/graph/resolvers/subscription.js
T
2017-06-05 20:51:08 +07:00

11 lines
160 B
JavaScript

const Subscription = {
commentAdded(comment) {
return comment;
},
commentEdited(comment) {
return comment;
}
};
module.exports = Subscription;