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
Community moderators have prevented the ability to post new answers.
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.