JQL: Filter other query
Asked Answered
C

2

26

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?

Crowder answered 4/9, 2012 at 5:52 Comment(0)
C
46

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()
Chirlin answered 4/9, 2012 at 12:52 Comment(0)
E
0

You can achieve it using the following JQL:

filter = "Your saved filter name here" AND assignee = currentUser()
Electrometer answered 3/8, 2021 at 10:48 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.