Hello,
Our Jira hierarchy is as follows:
Epic
Feature
Story
The Epics and Features are in one project, and the Stories are split into separate Team projects.
I've been asked to show all Epics that have stories in specific projects. I can't use a basic JQL because the Stories are linked to the Features and then the Features are in the Epics.
I've written this JQL to show all Features that have stories in a category of projects:
type = feature and issueFunction in linkedIssuesOf("category = '6 Technical Shared Services'", "Parent ")
I now need to get all the Epics that have these Features in them. I have ScriptRunner, but I don't have JQL Booster Pack so I cant use:
issue IN epicsOf("filter='FeatureFilter'")
Is this possible? Any help would be really appreaciated.
Hello @Jeremy Jedlicka
The "Epic link" is a specific "Issue Link". You can use this JQL
issueFunction in linkedIssuesOf("filter='FeatureFilter'", 'is Epic of')
Regards,
Seif,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.