So I currently have our Epics on 1 Project and our Stories on another Project. I need to see all EPICS of the Stories in the current sprint. We do have Scriptrunner installed so we can use that functionality. But what would the JQL look like?
Hello @Bradley
First you need to formulate the JQL for the Stories of interest:
project="The project that contains the Stories" and sprint in activeSprints()
The activeSprints() limits the results to stories that are currently in a Started and not yet Completed Sprint.
Then, to get the parent Epics of those issues using a ScriptRunner function, you insert the above JQL as input into the epicsOf() function:
issueFunction in epicsOf("project='The project that contains the Stories' and sprint in activeSprints() ")
Recommended Learning For You
Level up your skills with Atlassian learning
Learning Path
Get the most out of Jira
Explore the interface and basic Jira terms, then discover how to effectively manage your work.
Learning Path
Atlassian tools and practices for developers
Focus on your development work by using Jira software features and functions efficiently.
Atlassian Certified Associate
Jira Software Essentials certification
Demonstrate proficiency in utilizing essential Jira features and working efficiently with Agile frameworks like Kanban and Scrum.
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.