On Jira (7.2.1), how can I view all issues that were, at some point, assigned to me

jira

I searched and found:

assignee = currentUser() OR assignee was currentUser()

But this just returns a server error.

Anyone know a way I can achieve this?

Best Answer

The JQL

assignee = currentUser() OR assignee was currentUser()

worked fine for me. Perhaps you had some other problem with JIRA?

Related Topic