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
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.