This function returns an issue list containing the children issues located in the level just under current issue according to Advanced Roadmaps hierarchy.
Advanced Roadmaps hierarchy includes:
- Issues linked by Parent Link custom field.
- Issues linked by Epic-Story link.
- Sub-tasks in the lowest level of the hierarchy. Sub-tasks under issues in intermediate levels of the hierarchy are not considered to belong to Advanced Roadmaps hierarchy.
Example:
issuesUnder() #Output: Issue list
Variant where you additionally can define issues.
Duplicated issues are filtered from the output.
issuesUnder(issueList) #Output: Issue list
Variant where you define issue keys instead.
Duplicated issues are filtered from the output.
issuesUnder(issueKeys) #Output: Issue list
To return all issues under an issue within the Advanced Roadmaps hierarchy, you might want to have a look into the allIssuesUnder() function.
To return all issues having the same parent within the Advanced Roadmaps hierarchy, you might want to have a look into the siblingIssues() function.
To return the parent of an issue within the Advanced Roadmaps hierarchy, you might want to have a look into the parent() function.
To return all issues above an issue within the Advanced Roadmaps hierarchy, you might want to have a look into the issuesAbove() function.