Hi, the objective is to get an output list of all JIRA child stories from particular Epics.
Identified Epics (could be a filter) or all Epics that have a particular component field or label, etc...
Hello @John K
Welcome to the community!
The "Epic link" is a specific "Issue Link". You can use this JQL:
issueFunction in linkedIssuesOf("PUT A JQL HERE TO FILTER EPICS YOU SHOULD USE SIMPLE COTE 'WORD1 WORD2' IF NEEDED", 'is Epic of')
Regards,
Seif,
You can use this if you have scriptrunner addon
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I've also found this blog... but I am not sure how to write the syntax for it....
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
With native Jira, it is not possible to apply filter on epics. You can only get stories of one epic with this JQL
issue in linkedIssues(EPICKEY-123,"is Epic of")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
correct, I was able to get out put on a single Epic, but if I put a comma and additional epic it will provide output. The limitation is I always need to know the Epic #.
issuetype = Story AND "Epic Link" in (ABC-1234, ABC-1235,etc...)
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.