JIRA: Find all issues related to a user

后端 未结 7 1608
庸人自扰
庸人自扰 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:00

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

    0 讨论(0)
  • 2021-01-31 04:03

    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)

    0 讨论(0)
  • 2021-01-31 04:08
    assignee = currentUser() OR assignee was currentUser() OR reporter = currentUser()
    

    This will suffice the query

    0 讨论(0)
  • 2021-01-31 04:08

    Open the JIRA web application/site in your browser and navigate to Issues (in header) > Search for issues, then enter your search criteria.

    0 讨论(0)
  • 2021-01-31 04:12

    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.

    0 讨论(0)
  • 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.

    0 讨论(0)
提交回复
热议问题