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.
Well, at least there is a work around. It works, thanks!
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.