Current issue
This function returns an issue list containing all descendant issues, i.e., all related issues located in any level below 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:
allIssuesUnder() #Output: Issue list
Examples
|
Parser expression |
Description |
|---|---|
|
Bash
|
Considering that current issue is JWT-3, this expression returns all issues in any level below it: JWT-2, JWT-11, JWT-7, JWT-4, JWT-12, JWT-6, JWT-10, JWT-13 |
Output
This function returns an issue list
Issue list
Variant where you additionally define issues.
Duplicated issues are filtered from the output.
allIssuesUnder(issueList) #Output: Issue list
Examples
|
Parser expression |
Description |
|---|---|
|
Bash
|
Assuming that expression JWT-6, JWT-10, JWT-9, JWT-16 To achieve this the following functions are used: |
Additional information
Parameters used in this function
|
Parameter |
Input (data type) |
Description |
|---|---|---|
|
|
issue list |
Any given issue list. Usually this value is retrieved from a function (e.g. linkedIssues() or issuesUnderEpic()). |
Output
This function returns an issue list
Issue keys
Variant where you define issue keys instead.
Duplicated issues are filtered from the output.
allIssuesUnder(issueKeys) #Output: Issue list
Examples
|
Parser expression |
Description |
|---|---|
|
Bash
|
This example returns all issues in any level below issues JWT-3 and JWT-8:
|
Additional information
Parameters used in this function
|
Parameter |
Input (data type) |
Description |
|---|---|---|
|
|
text |
A comma separated list of issue keys. |
Output
This function returns an 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.
📚 Use cases and examples
| Use case | Workflow function | Field type | Automated action | Parser functions |
|---|