Files
talk/graph/resolvers/action_summary.js
T
2017-05-01 11:44:24 -03:00

13 lines
242 B
JavaScript

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