0

I want to create a query in JIRA and search for all issues closed by me. Simple search does not allow to do this but in advanced search I'd like to write JQL query but I don't know if JIRA has fields like username and transaction like 'close' In other words how could in JIRA I write the query to search for all issues closed by user 'Joe' ? Thanks

susja
  • 311
  • 3
  • 12
  • 33
  • 3
    http://stackoverflow.com/questions/11359357/filter-issues-by-the-user-who-closed-them – mdoar Jan 09 '14 at 20:43

2 Answers2

1

status was in (resolved, closed) BY joe_username

OR for yourself

status was in (resolved, closed) BY currentUser()

Crackerjoe
  • 46
  • 3
0

https://confluence.atlassian.com/display/JIRA/Advanced+Searching

Cntrl-F for this Phrase "status WAS "Resolved" BY jsmith"

rezdevil
  • 46
  • 2