I’d sure enjoy seeing a native Report available on clicks within Posts.
1 Like
Since I almost never notice that things in this category are feature request and almost always treat them as support, I just created a data explorer query for you on your site. Here’s the sql:
select clicks, topic_id, post_id, url
from topic_links
order by clicks desc
But now I think this is more like what you want–it gives you recently added links with more than 5 clicks.
select clicks, topic_id, post_id, url
from topic_links
where clicks > 5
order by created_at
3 Likes