You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I'm trying to figure out what JQL command would give me the same data shown in a next gen project roadmap. I'm using the smartsheet for Jira connector, and am getting too many tasks that show up
Hi @Nic
Have you tried this query:
project = ABC and issuetype = Epic or parent in (ABC-1, ABC-2, ABC-3)
^ This gives you all the Epics within a Next-Gen project plus all the child issues of a set of Next-Gen Epics which you define.
Parent is used here rather than "Epic Link" as it's Next-Gen.
Ste
Thanks. That is very useful. That looks to return all the epics. Is doing the (ABC-1, ABC-2, ABC-3) cause the JQL to check everything?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Nic
The ABC-* references each Epic singularly, providing the children of each. This is useful if you only want to locate a selection of Epic's children via issue search.
If you just want all Epics and their children which are displayed on the roadmap then you could use:
project = ABC and issuetype in (Epic, standardIssueTypes())
^ Or you can customise the issue types if you don't want all standard types - for example to just receive Epics and Stories:
project = ABC and issuetype in (Epic, Story)
Ste
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.