Files
talk/graph/resolvers/subscription.js
T
2017-06-15 01:08:25 +07:00

14 lines
214 B
JavaScript

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