JQL to get all issues in which certain user has been somehow involved

Ignacio Pulgar
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 30, 2015

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]?

2 answers

1 accepted

2 votes
Answer accepted
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
December 30, 2015

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!)

 

Ignacio Pulgar
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 30, 2015

Thank you so much, Nic!

2 votes
Asael Sepúlveda December 30, 2015

Have you tried with "comment ~ currentUser()"?

Ignacio Pulgar
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 30, 2015

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.

Suggest an answer

Log in or Sign up to answer