24

I have a saved query from another user, showing all open tickets of our developers.

What I want to do is to filter this query for tickets to me:

ticket in (other query) and assignee = currentUser()

Is something like this possible in JQL?

Martin
  • 3,510
  • 6
  • 26
  • 46

1 Answers1

44

Use AND together with the other JQL query, for example, if the original query is:

project =  Development and status = open

and now you wish to select the issues that belongs to you:

project =  Development and status = open and assignee = currentUser()

If the other query is saved you could use the filter name:

filter = "Dev open issues" and assignee = currentUser()

Or by Filter ID:

filter = "10302" and assignee = currentUser()
Kuf
  • 15,678
  • 4
  • 61
  • 85