I believe I need an advanced search? JQL Need all stories and subtasks in particular epic (pcf-522) tasks /subtasks are PCF-523 thru Pcf-631.
Without an addon it is challenging at best where sub-tasks are involved.
if your parent tasks are known and few...
project = ABC AND "Epic Link" = Abc-123 OR parent in (abc-124, abc-223, abc-321...)
Yes, and... to make it a bit less manual (without an addon)
Best regards,
Bill
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi John, in adittion to the Jack suggestion:
If you want to avoid to manually type every Epics affected by your criteria, you must go for a third-party plugin to create such a complex query.
i.e. using JQL Booster Pack (FREE), you need to type the following:
(type = Epic AND project = ABC) OR issue IN issuesInEpics('type = Epic and project = ABC') OR issue IN subtasksOf("(type = Epic and project = ABC) OR issue IN issuesInEpics('type = Epic and project = ABC')")
The above query will retrieve:
1.- Any Epic within the project ABC,
2.- Any subtask directly created under those epics,
3.- Any stories/issues within those epics on the Epic Link field regardless of the project
4.- Any subtasks created under issues matching point 3 regardless of the project
Regards
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.