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?
Subqueries can be used in native JQL just like the rest of JQL Search Extensions keywords. This means they integrate well with advanced search, filters, gadgets and any other Jira components that use standard JQL.
Configuring filters in Jira. To access your filters, navigate to Issues > Manage Filters. From there, you can edit your filter's details as well as work on filters that other users have shared with you. Users can also Manage Viewers and Editors and Manage Subscriptions for their filters.
The " !~ " operator is used to search for issues where the value of the specified field is not a "fuzzy" match for the specified value. For use with text fields only, i.e.: Summary. Description.
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()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With