issuesInEpics
The issuesInEpics function allows you to identify all issues that are part of epics matching a specific query.
It's helpful for:
- Enhancing visibility into the scope and progress of epics
- Simplifying the tracking of stories, tasks, and other issue types that contribute to the completion of epics
- Assisting in workload assessment and resource allocation
CAUTION: The
issuesinEpics function does not support team-managed projects.
Syntax and parameters
issueInEpics(Subquery)- Subquery: A JQL query that identifies the epics of interest.
How to use the issuesInEpics JQL function demo video
Examples
Finding all stories for open epics in a project:To aggregate all stories associated with epics that are currently in the "To Do" status within a specific project, you might use:
issueFunction in issuesInEpics("project = DEMO AND status = 'To Do'")