Search code examples
jirajql

How do you search for issues resolved by a set of users (multiple users)?


I have a team of 3 people and I would like to search for the issues resolved by them, so that I can make a list of known issues. How can I search that in JIRA using Basic or Advanced search?


Solution

  • I finally found the answer. It was simple. For the current user use the below query :

    project = <project-name> AND status changed to "Resolved" by currentUser() ORDER BY updated DESC
    

    For multiple users use :

    project = <project-name> AND status changed to "Resolved" by ('<first-username>', '<second-username>', '<third-username>') ORDER BY updated DESC