This function returns an issue list containing issues which are linked to same epic as the current issue.
The current issue will be included in the output, except if it is an epic itself.
Only standard issues (no sub-tasks) will be returned and duplicates are being removed.
Bash
issuesUnderEpic() #Output: Issue list
Variant where you additionally define issues.
Duplicated issues are filtered from the output.
Bash
issuesUnderEpic(issueList) #Output: Issue list
Variant where you define issue keys instead.
Bash
issuesUnderEpic(issueKeys) #Output: Issue list
If you want to remove the given issues from the output have a look at siblingIssuesUnderEpic() instead.