We use cloud; data Centre 9.4 version of Jira.
Existing hierarchy of issues are as below
Outcome -> Theme & Objective -> Initiative & Key Results -> Epics -> Stories & Tasks -> Sub-Tasks
The parent-child relationship between these hierarchies are identified using either "parentLink" / "EpicLink" field.
In my advanced roadmap plan, I wish to display only issues which are linked all the way up top and remove those who are not part of this chain.
I am trying to use below query
("Parent Link" is not EMPTY OR "Epic Link" is not EMPTY) AND project in ("X", "Y", "Z")
Under the "issues without parent" section in the plan, many issues WITH parent link are getting displayed still.
What could possibly be the reason here? we do have multiple issueTypes in same hierarchy level, could this be a problem, if YES, then how do I resolve it?
Hi @Dexter de Vera thanks for your quick response, by implementing your solution, the issues in the same level of hierarchy are not getting aggregated, but rather has no much effect on the view.
((issuetype in (Objective, "Key Results", Epic) AND "Parent Link" is not EMPTY)
OR (issuetype in (Story, Task, Bug, "Tech Debt", Improvement) AND "Epic Link" is not EMPTY)
OR
(issuetype = Outcome AND "Parent Link" is EMPTY) )
OR
((issuetype in (Theme, Initiative, Epic) AND "Parent Link" is not EMPTY) OR ( issuetype in (Story, Task, Bug, "Tech Debt", Improvement) AND "Epic Link" is not EMPTY)
OR (issuetype = Outcome AND "Parent Link" is EMPTY) ) AND status not in (Archive,"Won't Do")
I mean filter button in timeline not the filter in Issue Source.