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?
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