Search code examples
jirajql

Display list of subtasks and corresponding stories inside an Epic


I want to list all Stories and Subtask of an existing epic ES-1 in project ES. Is there a good way to solve this?


Solution

  • This is probably not possible with the out-of-the-box JQL capabilities of Jira. However, if you have ScriptRunner at hand, you could try:

    key = ES-1 OR "Epic Link" = ES-1 OR issueFunction in subtasksOf("'Epic Link' = ES-1") ORDER BY type ASC