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)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This worked perfectly, thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If I apply the command:
watcher = currentUser () AND resolution = Unresolved ORDER BY priority DESC, updated DESC
It shows all the incidents that I follow, what will be the command to apply to show the incidents that I do not follow?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try "watcher != currentUser() or watcher is empty"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I did not succeed. It shows me a message that says:
"No incidents found that match the specified search criteria"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok, let's break it up a bit. What do you get from
Just the number of results for each is all we need.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It worked like a charm!
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This worked, Thanks ! :)))
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Worked like a champ!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks! is it possible to add 2 different resolutions to filter by? I've playing around with"watcher in (currentUser()) AND resolution = Unresolved ORDER BY priority DESC, updated DESC" with no success to have resolution Unresolved and Incomplete in the same query, pretty much I'm trying to filter all ACTIVE (only) issues I'm watching. Any input will be truly appreciate it
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You should not have a resolution of "incomplete" - the fact the resolution is there means that is is finished with - i.e. complete. It's not open because you have resolved it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
is it possible to search (using JQL) for all issues that are watched by user_xyz?
Thanks in advance!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Name them in the query instead of using the currentuser() function.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That simple! Thanks a lot and sorry for a silly question, I was misled by the hint that returns only the currentuser() function for the watcher field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not a silly question! We'd certainly not mentioned it in the earlier comments and answers on this question!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I copy and pasted the instructions and was left with this error?
Unable to parse the text 'watcher = currentUser() AND resolution = Unresolved ORDER BY priority DESC, updated DESC' for field 'text'.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That error message implies you are doing something with a field, not running an advanced search. Have you copied and pasted just the
watcher = currentUser() AND resolution = Unresolved ORDER BY priority DESC, updated DESC
into the advanced search
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This worked like a charm, I was able to stop watching 265 issues in one go. Thank you @Cruz Fernandez
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @Nic Brough -Adaptavist- this worked great for me!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Rock star! Thank you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks! This helped. Then bulk edit, select all and stop watching the issues.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, what's the difference between "watcher != currentUser()" and "issue not in watchedIssues()". It gives me different results with the number of issues
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.