Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Epics not appearing in roadmap

Lara Savon January 27, 2022

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?

2 answers

0 votes
Pramodh M
Community Champion
January 27, 2022

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

0 votes
John Funk
Community Champion
January 27, 2022

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"

Suggest an answer

Log in or Sign up to answer