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 have 4 initiatives with Summary contains 'Onboarding' and I just need to pull all those Stories/Epics/Features to be pulled in my Jira pla which belong to these 4 initiatives
So finding the all children (across all the levels; epic, standard, and sub-task) of an Initative can be found with the following JQL
issuekey in portfolioChildIssuesOf(MYKEY-1)
In order to get the 4 you would need to do this with OR statements, so it would look something like this:
issuekey in portfolioChildIssuesOf(MYKEY-1) Or issuekey in portfolioChildIssuesOf(MYKEY-2)
Because of the way Advanced Roadmaps is structured, the Initiatives must be explicitly stated in the JQL.
How this will work in Data center? And second thing is can I have a JQL filter that pulls everything from all the Initiatives where label = onboarding ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, this will work in Data Center as well, and no you cannot reference Initiatives with any other attribute other than explicit issue key. This is why I have the JQL structure as an OR statement with each key listed.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So how do I get all the children from all the initiatives where the Summary of initiative contain 'Onboarding'?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I was actually expecting that I can have a nested jql that will help with this request.
For example ->
Project = Abcd-101 AND potfoliochildissue of Initiative where Summary ~ 'onboarding'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The portfolio JQL is not capable of doing what you are asking. You will need to include each Initiative, by key, in the format I provided above.
That answer could change based on additional addons you may have with enchanted search capabilities, but the native Jira JQL doesn’t allow for this kind of referencing.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For a little more context - here is the documentation around Advamced Roadmaps JQL with examples - https://support.atlassian.com/jira-software-cloud/docs/search-for-advanced-roadmaps-custom-fields-in-jql/
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.