for finding all Epics (from differents Jira projects) but with value of "Parent link", Initiatives of an unique Project.
Solved! Go to Solution.
Hi Javad, thanks a lot for your answer. But let me explain in more details what I need,
I have a 'jira project', MT-Feel, with Initiatives and epics included under them. But, those epics can belong others jira projects that for starting I don't which are...
I mean, I'd need to show all Initiatives of jira project (MT-Feel) with its Epics included whatever project belongs (not only from MT-Feel).
Thanks in advance!,
unfortunately, this is trickier than one might think; as a "hierarchical query", it would really require some kind of "join" or "subquery", which isn't available in plain Jira/JQL.
A few directions forward:
If you want to run your search "dynamically", without manually "stitching" two queries together, you'll need extra tooling:
Hope this helps,
Best,
Hannes
Just to expand on the last point, this is how this would look in the app that my team and I are working on, JXL for Jira. Put simply, you create a sheet with all your relevant initiatives and any potential epics below these initiatives. You then configure your hierarchy (that's just a couple of clicks) and hide all issues that exist "outside" of this hierarchy:
Once you have your set of issues, you can work on these issues directly in JXL (much like you'd do in e.g. Excel or Google Sheets), trigger various operations in Jira, or export them for further processing.
Any questions just let me know!
Hi @Hannes Obweger - JXL for Jira ,
Firstly, thanks for sharing all of those alternatives. Great help for me!
What a pity!, I'd need showing up all the Epics which 'Parent link' is a initiatives of the project M-Feel.
I mean, you guy know, showing in a Plans all the initiatives of MT-Feel project and in cascade with their epics (whatever project belong)
I thought that exists some Jira functions for that,( e.g linkedIssues(), epicsOf(),...) which could answer if its project parent link is MT-Feel or something like that... :(
Kind regards!
@Nieves García yeah understood - I believe you should be able to do this with a Marketplace app.
Another thing I could think of is to create a Advanced Roadmaps plan with two filters: One filter that pulls in all your initiatives from MT-Feel, and another filter that pulls in any potential epics (from any projects you generally care about). Advanced Roadmaps should then show the epics under their initiatives, and all other epics in a special "Issue without parents" bucket that you can just ignore.
This is similar to how it would be done in JXL, except that JXL has an option to completely hide any "issues without parents".
Hi @Hannes Obweger - JXL for Jira , thanks a lot for your ideas and comments. It was great help for me. Finally, I found a solution , this is using the Function,
LinkedIssuesofrecursive(subquery, [link name..]),
this function traverses issue links recursively to return all issues that are linked (directly and indirectly) to the results of the initial subquery.
In my case : issueFunction in linkedIssuesOfRecursive("project = MTFEEL", "is parent of")
Thks & Best Regards,
I’m Maurício, a support engineer at Appfire and I’m here to help you.
Unfortunately, using JQL of Jira, you’ll not be able to do it dynamically.
In the app where my team works, JQL Search Extensions for Jira, you can use this query to find all the Epics which the ‘Parent link' is an initiative of the project MT-Feel.
issue in childrenOfIssuesInQuery("project='MJP' and type=Initiative") and type=epicPlease contact our support if you have any other questions about this query.
We’ll be happy to help you!
Best regards,
Maurício
Hi @mauricio.groth !, Thanks in advance for your support.
Let me share with you that I found a solution , using the function,
LinkedIssuesofrecursive(subquery, [link name..])
In my case, issueFunction in linkedIssuesOfRecursive("project = MTFEEL", "is parent of")
Thanks & best regards,