JIRA - Resolved by me query

前端 未结 12 952
情书的邮戳
情书的邮戳 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:12

    You can use the WAS operator:

    JIRA - Advanced Searching : "The "WAS" operator is used to find issues that currently have, or previously had, the specified value for the specified field"

    Example: status WAS "Resolved" BY currentUser()

    0 讨论(0)
  • 2020-12-14 15:16

    For JIRA v6.3.4, this worked for me:

    "Resolved By" = currentUser() 

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

    0 讨论(0)
  • 2020-12-14 15:18

    Use next JQL: status was resolved by "username"

    0 讨论(0)
  • 2020-12-14 15:20

    None of the above solutions worked for me. I started adding a label to all my issues to resolved_by_kishore, then in advanced search, I'm using lables=resolved_by_kishore. It's working fine.

    0 讨论(0)
  • 2020-12-14 15:23

    You can use this JQL query:

     "Resolved by" = currentUser()
    

    (I just verified this in v4.1.2#531 on a standalone version)

    There is also a plug in you can use in older versions: https://studio.plugins.atlassian.com/wiki/display/JQLT/Home

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