brendand
(Brendan)
Mars 21, 2018, 12:13
1
We use tags and are wondering how we can see which tags our members have chosen to follow (whether “watching”, “following”, etc.) specific tags?
We are looking to bulk delete some tags but first want to understand how many of our users are potentially following / care about each tag.
Thanks for your insight!
Brendan
A data explorer query will do it:
SELECT
name,
user_id,
notification_level
FROM tag_users tu
JOIN tags t ON tu.tag_id = t.id
SidV
Avril 3, 2018, 6:09
3
Excellent @ChrisBeach !
I added your query to the list .
A doubt here, I see that are four notification levels, can you tell me the levels?
I mean, watching = 1? or 2 level? Muted = 4?
neil
(Neil Lalonde)
Avril 3, 2018, 6:12
4
The notification levels are listed here:
Drew-ART
(Drew)
Janvier 27, 2020, 2:30
5
Ce serait cool de voir cela ajouté à la page des statistiques. Davantage d’options pour aider à optimiser la façon dont les utilisateurs utilisent le site.