Hi All!
I got a problem when I pasted a link to the timeline in Confluence and filtered it (code below). I don't have the arrow next to the epic to see what issues are under it.
Code:
project = TUP AND type=epic AND (text ~ "Q1_2024" OR key = TUP-5952 OR key = TUP-5897 OR key = TUP-5946 OR key = TUP-5947 OR key = TUP-5948 OR key = TUP-5954 OR key = TUP-5955 OR key = TUP-5919)
I have many epics with issues under it, but as you can see in the picture, it doesn't work.
Hi @Piotr Wierzbicki based on the JQL you shared, it only includes Epic issue type. You can query associated sub-tasks by adding the function parent in ("issue-key-1", "issue-key-2")
For example: project = "TUP" and issuekey in ("TUP-5952","TUP-5897") or parent in ("UP-5952,"TUP-5897") will return respective epics and the children underneath.
However, it might not be an ideal solution since you'll need to spicy all the issue keys.
@Linh Pham_Ricksoft_Inc Maybe you know how to make changes in this part of the code to show all types which are under epic?
project = TUP AND type=epic AND (text ~ "Q1_2024"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Piotr Wierzbicki ,
Are the issues under the Epic subtasks? If so, Timeline doesn't support subtasks. You need to upgrade to Advanced Roadmaps or use a free Gantt/roadmap tool.
If there are non-subtask issues still not showing, then it's another problem entirely.
-- Becky
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
When I'm in the timeline section / board in Jira, I can expand the epics, as seen in the pic.
Probably I missed sth in the filter that I created:
project = TUP AND type=epic AND (text ~ "Q1_2024" OR key = TUP-5952 OR key = TUP-5897 OR key = TUP-5946 OR key = TUP-5947 OR key = TUP-5948 OR key = TUP-5954 OR key = TUP-5955 OR key = TUP-5919)
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.