Find issues that were ever assigned to me

Jira

Jira Problem Overview


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?

Jira Solutions


Solution 1 - Jira

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())

Solution 2 - Jira

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.

Solution 3 - Jira

Click the eyeglass icon on the left pane Click on "Advanced search for issues" On the top right, click on advanced search to open the JQL textbox Enter the text "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...

Solution 4 - Jira

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

Solution 5 - Jira

> issue in watchedIssues()

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

Solution 6 - Jira

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

assignee was currentUser()

Solution 7 - Jira

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

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionMidhatView Question on Stackoverflow
Solution 1 - JiraEdson MedinaView Answer on Stackoverflow
Solution 2 - JiraJavid JamaeView Answer on Stackoverflow
Solution 3 - JiraNeveView Answer on Stackoverflow
Solution 4 - JiraFrancis MartensView Answer on Stackoverflow
Solution 5 - Jirae-mreView Answer on Stackoverflow
Solution 6 - JiraAndrey MazurView Answer on Stackoverflow
Solution 7 - JiraTadejView Answer on Stackoverflow