How can I see how many topics a category consist of?
Hey Toni,
Does this Data Explorer query work for your needs? It will show you a count of topics and posts in each category:
SELECT category_id,
stats.topic_count,
stats.post_count
FROM categories ccc
LEFT JOIN (SELECT topics.category_id,
Count(*) topic_count,
SUM(topics.posts_count) post_count
FROM topics
WHERE ( "topics"."deleted_at" IS NULL )
AND ( topics.id NOT IN (SELECT cc.topic_id
FROM categories cc
WHERE topic_id IS NOT NULL) )
AND "topics"."visible" = true
GROUP BY topics.category_id
) stats
ON stats.category_id = ccc.id
3 إعجابات
Awesome, thanks @rishabh
إعجاب واحد (1)
Isn’t this possible by visiting the categories page? Categories - Discourse Meta
إعجاب واحد (1)
Yeah, it is. I don’t know how I missed that.
إعجابَين (2)
Now I know - it shows it on meta, but not on our community since we are using the boxes layout (and it doesn’t have the count apparently)
إعجابَين (2)
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.