mirror of
https://github.com/wassname/talk.git
synced 2026-07-15 11:26:58 +08:00
15 lines
304 B
JavaScript
15 lines
304 B
JavaScript
const AssetActionSummary = {
|
|
__resolveType({ action_type }) {
|
|
switch (action_type) {
|
|
case 'FLAG':
|
|
return 'FlagAssetActionSummary';
|
|
case 'LIKE':
|
|
return 'LikeAssetActionSummary';
|
|
default:
|
|
return undefined;
|
|
}
|
|
},
|
|
};
|
|
|
|
module.exports = AssetActionSummary;
|