Pour lister chaque événement « résolu » individuel, vous pouvez utiliser une requête comme celle-ci :
SELECT
acting_user_id,
target_topic_id AS topic_id,
target_post_id,
created_at::date
FROM user_actions
WHERE action_type=15
ORDER BY created_at DESC