In JIRA, how do a find all issues related to a user, across all projects.
A simple query search yields only full text results. i.e. only issues where the name is mentio
Just had the same 'stock accounting' use case: If you like to get an overview of the issues where you were involved to, just go to the profile page of your user, and hit 'Activity'. All tickets you had been working on are displayed.
This seems to be an alternative for all who are also not able to do a query like
assignee was currentUser()
because their Jira does not support history searches on that field (like ours here).
Click on Issues on the top, click New on the left bar.
Now, choose the reporter and assignee. Then switch to Advanced search.
Then you can change the AND to an OR and do the search.
e.g.
assignee = currentUser() OR reporter = currentUser()
(it would have been AND
by default)
assignee = currentUser() OR assignee was currentUser() OR reporter = currentUser()
This will suffice the query
Open the JIRA web application/site in your browser and navigate to Issues (in header) > Search for issues, then enter your search criteria.
You should be able to use the "FIND ISSUES" option across the top bar, select "New" to create a new filter (which by default spans all projects), and select your name from the relevant "Issue Attributes" dropdown boxes.
In JIRA, I need to find really all issues related to a user (me) including comments, assignee, reporter, watcher and status updates.
I've used filters with JQL and next query:
status changed BY currentUser() OR reporter = currentUser()
OR watcher in (currentUser()) OR assignee = currentUser()
OR assignee was currentUser() OR commentedByUser = currentUser()
ORDER BY updated DESC
Switch to JQL
Enter query and click Search
button.