Files
talk/graph/resolvers/action_summary.js
T
2017-02-21 14:41:33 -05:00

15 lines
294 B
JavaScript

const ActionSummary = {
__resolveType({action_type}) {
switch (action_type) {
case 'FLAG':
return 'FlagActionSummary';
case 'LIKE':
return 'LikeActionSummary';
case 'DONTAGREE':
return 'DontAgreeActionSummary';
}
},
};
module.exports = ActionSummary;