111

I am trying to create a filter to search for all issues that were ever assigned to me, even after the assignee is changed. I cant find the appropriate search parameters for this. Is it even possible in jira?

Midhat
  • 17,454
  • 22
  • 87
  • 114
  • Which JIRA version do you have? – sereda Apr 06 '10 at 08:34
  • 1
    possible duplicate of [How to find issues that at some point has been assigned to you?](http://stackoverflow.com/questions/2145913/how-to-find-issues-that-at-some-point-has-been-assigned-to-you) – Ryan Kohn Nov 07 '13 at 15:15

7 Answers7

218

assignee was currentUser() should do it.

It will also include issues that are currently assigned to you.

If it doesn't, try: (assignee = currentUser() OR assignee was currentUser())

ADTC
  • 8,999
  • 5
  • 68
  • 93
Edson Medina
  • 9,862
  • 3
  • 40
  • 51
39

I'm not sure if things have changed with JIRA since previous answers were written, but all I needed was:

assignee was currentUser()

This will pick up things that are currently or previously assigned to me.

Javid Jamae
  • 8,741
  • 4
  • 47
  • 62
21
  • Click the eyeglass icon on the left pane
  • Click on "Advanced search for issues"
  • In the top right, click on "Advanced Search" to open the JQL textbox
  • Enter the query:
assignee = currentUser() OR assignee was currentUser()

If you'll use this repeatedly, click save and name the search. Then you'll see it on the left bar under Starred...

Swivel
  • 3,020
  • 26
  • 36
Neve
  • 367
  • 2
  • 9
6

2022 and still the solution works like a charm for jira version 8.20.6

assignee was currentUser()
Andrey Mazur
  • 510
  • 4
  • 14
5

Check out the toolkit plugin https://studio.plugins.atlassian.com/wiki/display/JTOOL/JIRA+Toolkit+Plugin

It has a custom field 'Participant' which allows you to find all issues that you raised, were assigned to or commented on.

Francis

Francis Martens
  • 3,458
  • 4
  • 24
  • 26
  • 2
    The link is broken – PAS Aug 11 '21 at 19:07
  • It seems the toolkit plugin URL has changed and is currently: [https://marketplace.atlassian.com/apps/5142/toolkit-plugin-for-jira?hosting=server&tab=overview](https://marketplace.atlassian.com/apps/5142/toolkit-plugin-for-jira?hosting=server&tab=overview) – Thomas Fitzgerald Mar 14 '19 at 18:53
2

issue in watchedIssues()

... might also be of use. It gets every issue relevant to you.

e-mre
  • 3,305
  • 3
  • 30
  • 46
  • 1
    Actually it gets all issues where the current user is a watcher. Other relevant issues won't be returned. – mdoar Jun 20 '14 at 15:37
0

On the JIRA web application/site navigate to Issues (in header) > Search for issues, then enter your search criteria.

tedi
  • 6,350
  • 5
  • 52
  • 67