Heads up! On March 5, starting at 4:30 PM Central Time, our community will be undergoing scheduled maintenance for a few hours. During this time, you will find the site temporarily inaccessible. Thanks for your patience. Read more.
×I've created a new issue type called Epic and re-named Jira's issuetype called Epic to Feature, so I can have the traditional Epic/Feature/Story hierarchy found in SAFe. I'm trying to write a jquery to extract all the stories under a specific Epic. Has anyone done this before?
Hi @srmrunner
This should work:
issue in portfolioChildIssuesOf("ABC-1")
^ ABC-1 would be your issue key. You could limit it to just stories also:
issue in portfolioChildIssuesOf("ABC-1") and issuetype = Story
Ste
Glad to hear!
If this answer helped, could you accept it? That helps others who find this question in future know it can help them too :)
Ste
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @srmrunner
Welcome to the Atlassian community.
Refer to this documentation:
You can use the portfolioChildIssuesOf() function.
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.