JIRA: Find all issues related to a user

后端 未结 7 1625
庸人自扰
庸人自扰 2021-01-31 03:20

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

7条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-31 04:17

    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
    
    1. Open filter page:

    1. Switch to JQL

    2. Enter query and click Search button.

提交回复
热议问题