Need Filter to show all subtasks assigned to me where the parent story is in a specific status in the workflow..
Hi Eita,
Sadly you cannot achieve the desired search using standard features on Jira, you must go for a third-party app instead. Using i.e. JQL Booster Pack if you are on Server / DataCenter or a similar app designed for Cloud you can type the following:
1) Search all subtasks assigned to me where the parent story is in 'Waiting' status
type = Subtask AND issue IN subtaskOf(' type = Story AND status = Waiting ')
(*) Note that this is just an example, you must tune above query to fit your needs.
Using this app you can also query other issues relations, check:
References:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't think Jira JQL supports that complexity (out-of-the-box) without installing (and likely paying for) an add-on App for Jira that expands the capabilities of JQL to traverse the issue hierarchy.
However, you may be able to visualize what you want without a strict filter to do that.
Consider a board with the "specific status" you desire mapped to a column on that board. Set the board to have swimlanes grouped by "Story". Then define a quickfilter on that board to show just your items (or limit the board filter to only show your items).
If you have permission to create a board in your instance, you can probably visualize on that board what you want, by customizing the board appropriately.
Let us know here what ended up working for you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Do you have an apps installed that extend the search functionality of JIRA, like Adaptavist ScriptRunner? Or are you limited to OTB functionality?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.