JIRA - Resolved by me query

前端 未结 12 1067
情书的邮戳
情书的邮戳 2020-12-14 14:34

How to write query that will select only issues resolved by me.

I have found some old post that says its no possible, but it might have changed.

12条回答
  •  一生所求
    2020-12-14 15:17

    I guess you can use this

    status in (resolved) AND component = COMPONENT_NAME AND assignee in (currentUser()) AND resolved > -1d
    

    but the new thing here resolved > -1d this to get the issues that are resolved me in this day

    resourses: https://community.atlassian.com/t5/Jira-questions/JIRA-4-4-search-filter-how-to-find-issues-resolved-in-last-seven/qaq-p/77326

提交回复
热议问题