i'm doing my best to find a way to bulk stop watching all issues i currently am a watcher on. can't find an easy answer unless i'm a java coder or a wizard level 19. anyone able to help?
you can call a JIRA QL like this one:
watcher = currentUser() AND resolution = Unresolved ORDER BY priority DESC, updated DESC
To be able to find all those tickets with your watch. (I've clicked on all of them to unwatch manually though)
Try running a filter for
issue in watchedIssues()
Then, hit the "bulk edit" option in the navigator with a magic missile, and you'll find the option to add/remove watches.(Note that both features are for higher level JIRA dungeons - 6.3 and above if memory serves)
Thanks, this is exactly what I needed.
this worked!! thanks
Thank you!!!
This worked perfectly, thank you!
watcher = currentUser()
Thanks @Nic Brough -Adaptavist- this worked great for me!
Hi, what's the difference between "watcher != currentUser()" and "issue not in watchedIssues()". It gives me different results with the number of issues
The first query
watcher != currentUser()
does not return issues without a watcher, it will only return issues where there is at least one watcher, but you are not one of them.
watcher != currentUser OR watcher is EMPTY
AND
issue not in watchedIssues()
will return the same values because the second query returns all issues where you are not implicitly watching.
Rock star! Thank you.
Follow up question:I added watcher = currentUser() to my query and now the status!="Done" isn't working (I am getting completed issues. What went wrong?
I went from:
project = DivDS OR assignee = currentUser() OR comment ~ currentUser() AND status != "Done"
to:
project = DivDS OR assignee = currentUser() OR comment ~ currentUser() OR watcher = currentUser() AND status != "Done"
Thanks! This helped. Then bulk edit, select all and stop watching the issues.
It looks like you're new here. Sign in or register to get started.