Hi,
I have defined a Jira Project with a number of Initiatives. Under each Initiative, there is a number of Epics that originate from different Jira Projects. Under each Epic, there are tasks that come from different Jira Projects.
I am struggling to find a query that will dynamically list all of the Epics and Tasks that are added to the Initiatives.
Appreciate the support.
Thanks
In Jira Cloud you can currently find the children of initiative by specifying the issue key:
issuekey in portfolioChildIssuesOf(MYKEY-1)
You can specify multiple keys by duplicating the above query and connecting the queries with OR.
To get children of initiatives based on more advanced criteria you can install our professional indexing service:
After you install the app you can simply search:
issue in childrenOfIssuesInQuery("project='ACME' and type=Initiative")
issue in childrenOfIssuesInQuery("key in (MYKEY-1, MYKEY-2, MYKEY-3)")
You can also find children of initiatives and children of their children with the recursive function:
issue in childrenOfIssuesInQueryRecursive("project='ACME' and type=Initiative")
Check out the documentation for more examples.
If you have any other questions, please contact our support. We’ll be happy to help you!
Best regards,
Maurício
Hi Mauricio.
Appreciate the feedback. It works perfectly. Thanks.
My challenge (without any plugin) is that I need to add to manually edit the filter to add new initiatives as they are being added.
Thanks again.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @zahir.nuckchady
I don't work with Advanced Roadmaps, but found the following by searching.
This post has comments about methods to get the results.
There is also this article that you might find helpful.
And there is also this issue in Atlassian's backlog
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.
Hi @zahir.nuckchady - Assuming you're using the parent link field to link epics to initiatives, you could do this:
issuekey in childIssuesOf(YOURINITIATIVEKEY)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Mark,
Thank you for your reply. I am having an error with this query.
Unable to find JQL function 'childIssuesOf
However, it works with issuekey in portfolioChildIssuesOf
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.