Is there a straight-forward way of obtaining all issues somehow related to a specified user?
As a workaround, I've come up with this long and incomplete JQL:
assignee was currentUser() OR worklogAuthor = currentUser() OR reporter was currentUser() OR watcher = currentUser() OR voter = currentUser() OR assignee changed by currentUser() OR fixVersion changed by currentUser() OR priority changed by currentUser() OR reporter changed by currentUser() OR resolution changed by currentUser() OR status changed by currentUser()
The JQL above will miss any issues were the only action of the user has been adding a comment.
Any ideas? @Nic Brough [Adaptavist]?
Heh, not a chance, directly. You will need to do one of two things:
1) Find or write a (potentially horried) JQL function to enable this searching. I've seen a couple that try to do it, and most of them fall over spectacularly when there's a lot of data to work with, so I can't recommend them.
2) Find or write a field that gathers the information. The best way to do that is a scripted field, as that is updated on every comment/update and hence doesn't load the system in any significant way. There's a really good one built into the JIRA Toolkit which is a really good starting point, although it is hard coded. The "Participants" field in there gives you "Current assignee, reporter and anyone who has commented" all in a simple multi-user-picker field. Makes searching a doddle (and reporting is quite handy - something the JQL function can't help you with!)
Thank you so much, Nic!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Have you tried with "comment ~ currentUser()"?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, Asael. Yes, but that query returns just comments in which currently logged in user has been mentioned, and not the issues in which that user has added a comment. Anyway, it is useful for getting issues where currentUser()'s action might be needed.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.