Files
talk/graph/resolvers/action_summary.js
T
2018-01-11 20:00:34 -07:00

15 lines
294 B
JavaScript

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