I would like to get a list of stories that are associated with all epics that have specific labels.
I am thinking it would be some sort of sub select. So grab all the epics with the label and then look for any story associated with those epics. Is there a way to do that in JQL. I saw a post on a filter keyword but I could not find any documentation on it.
Hi Steve and Welcome,
This information can't be retrieved with a native JQL, however you can try ScriptRunner for Jira and type the following filter to retrieve the data:
type = Story AND issueFunction in issuesInEpics("labels = myLabel")
You can try also issueWhereEpicIn() JQL function introduces by JQL Tricks Plugin
Kind Regards.
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.