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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.