Files
talk/graph/resolvers/subscription.js
T

14 lines
214 B
JavaScript

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