Hi Team,
I created a filter query for my board project = XX AND "Epic Link" IN (Epic Name1, Epic Name 2, .. etc.) ORDER BY "Epic Link"
and a story will appear in the Kanban for said EpicName1, and so on, but the Epics do not appear in that board's roadmap.
Is there a way to have them appear in the roadmap?
Hi @Lara Savon
Use
parentEpic = Epic-Key
which returns both epic issue and story issue
project = XX AND "parentEpic" IN (Epic-Issue-Key-1, Epic-Issue-Key-2, .. etc.) ORDER BY "Epic Link"
Let me know if the solution suites
Thanks
Hi Lara,
Your filter uses Epic Link, which is not a field in Epics. So, you are leaving out all Epics when you use that field in your filter. So I would suggest something like this:
project = XX AND ("Epic Link" IN (Epic key 1, Epic key 2, .. etc.) or issuetype = Epic) ORDER BY "Epic Link"
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.