Are you in the loop? Keep up with the latest by making sure you're subscribed to Community Announcements. Just click Watch and select Articles.

×
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

JQL filter for Portfolio Epic and its children epic(s) and issues in children epic(s)

Hi All,

I would like to have JQL filter, where I wanted to get children epic(s) and issues from children epics from the Portfolio Epic. The following pictorial representation:


  1. PORTFOLIO EPIC
    1. EPIC1
      1. Issues/stories
    2. EPIC2
      1. Issues/Stories
    3. EPIC3:
      1. Issues/Stories

Attempted JQLissuekey in childIssuesOf("PE-1394") and type = epic AND "Scrum Team" in ('TEAM1', 'TEAM2')

This only gives EPIC1, EPIC2 and EPIC3. But, I also want issues/stories of the EPIC1, EPIC2 and EPIC3.

Any help is highly appreciated! Thanks in advance!

4 answers

1 accepted

0 votes
Answer accepted

This gives Epics names and its children and ignoring type = epic. Following JQL worked for me. Thanks everyone for your insights and inputs

issuekey in childIssuesOf("PE-1394") AND "Scrum Team" in ('TEAM1', 'TEAM2') AND type != epic

1 vote
Kian Stack Mumo Systems
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Oct 17, 2023

Try this:

 

issuekey in portfolioChildIssuesOf("PE-1394") and type = epic AND "Scrum Team" in ('TEAM1', 'TEAM2')

Unfortunately, I tried, it throws error "Unable to find JQL function 'portfolioChildIssuesOf(PE-1394)'."

Kian Stack Mumo Systems
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Oct 17, 2023

You need to put your issue key in quotes.

Same issue for the following JQLs

issuekey in portfolioChildIssuesOf('PE-1394') and type = epic

issuekey in portfolioChildIssuesOf("PE-1394") and type = epic

1 vote
Laurie Sciutti
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Oct 17, 2023

Hi @Sudhir ~ Are you using the Parent Link field to link your Epics to your "Portfolio Epic"?

Yes! Portfolio Epic--Child Issues

0 votes
Danut M [StonikByte]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Oct 18, 2023

Hi @Sudhir,

An easier way might be to use the Work Breakdown Structure (WBS) Gadget offered by our Great Gadgets app.

This gadget displays the issues from a filter by their hierarchy in form of Initiatives (Portfolio Epic) > Epics > Tasks, Stories > Subtasks along with their status.

This way you can get the pictorial presentation, exactly as you want. 

All you have to do is to create a Jira filter that includes all the issues to be grouped, and then to configure the gadget to use that filter.

Please note that this app offers many other gadgets that you will find useful. See the articles from our blog, to make an idea.

I hope this helps. If you need any help with the configuration, please don't hesitate to contact us at support@stonikbyte.com. 

Danut. 

Thank you Danut, unfortunately, my org doesnt allow third part apps. 

Suggest an answer

Log in or Sign up to answer