There is a project that has multiple initiatives (let's say there are 10 initiatives). Now each initiative has certain number of epics (let's say few have 2 & few have 3). I need to write a query that will display a list of Initiatives under the project and the count of EPICs each of these initiative's have.
Hi @Saurav Kumar Maharana - Unfortunately this is not possible to dynamically get this information without a marketplace app.
Depending upon whether your instance is server/DC or Cloud, you'd need to execute a query like this:
Server/Data Center
(issue in childIssuesOf(ABC-001) OR issue in childIssuesOf(ABC-002) OR issue in childIssuesOf(ABC-003)) AND issueType = Epic
Cloud
(issue in portfolioChildIssuesOf(ABC-001) OR issue in portfolioChildIssuesOf(ABC-002) OR issue in portfolioChildIssuesOf(ABC-003)) AND issueType = Epic
Include the Parent Link field as a column in your results.
Unfortunately, another limitation is that you can't do any dashboard activity against Parent Link, so you'd need to export the results to csv and perform a pivot in your spreadsheet app of choice.
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.