To clarify, I want to write a query that will return...
1. All Issues and subtasks assigned to me
2. And any parent Issues where I am assigned a subtask
3. And all subtasks of parent Issues returned in #2
Using JQL Tricks plugin (paid), you can achieve this in 2 steps.
1. Save a filter to find all parent issues where you can assigned a subtask
issue in parent("issuetype = subtask and assignee = currentUser()")
2. Write another query to use the filter saved above. Something like:
assignee = currentUser or filter = "Filter I saved earlier" or issue in subtask("filter = \"Filter I saved earlier\"")
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.