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
this JQL keeps changing with cloud and other improvements. there are TONS of older versions of this question.
parent link is great if I only want the immediate decedents. How do I get all of the decedents for a specific initiative.
It was issue in childissues of then it switched to portfolioChildIssuesOf - and now that isn't recognized either.
thanks
Hi @Tricia Bailey and welcome to the community!
For cloud, this query should still work and bring in all descendants:
issue in portfolioChildIssuesOf("YOURKEY")
Is there a way to add multiple keys? This doesn´t work.
issue in portfolioChildIssuesOf("KEY01", "KEY02", "KEY03")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Unfortunately no. Agree that this would make life easier, but unfortunately, you'll have to add a bunch of OR clauses:
issue in portfolioChildIssuesOf(KEY01) OR issue in portfolioChildIssuesOf(KEY02) OR issue in portfolioChildIssuesOf(KEY03)
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.