Files
talk/graph/resolvers/action_summary.js
T
2017-04-18 14:50:57 -06:00

15 lines
293 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;