This function returns an issue list containing sibling issues which are linked to same epic as the current issue

The current issue will not 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.

siblingIssuesUnderEpic() #Output: Issue list
Parser expressionDescription
siblingIssuesUnderEpic()

This example returns a list with the all issues linked to the same epic as the current issue, excluding the current issue, e.g.:

[JWT-2, JWT-3, JWT-4]

This function returns an


Variant where you additionally define issues.

Duplicated issues are filtered from the output.

siblingIssuesUnderEpic(issueList) #Output: Issue list
Parser expressionDescription
siblingIssuesUnderEpic(linkedIssues("is blocked by"))

This example returns the issue list of all all issues linked to the same Epics as the issues blocking the current issue, excluding the blocking issue e.g.:

[JWT-2, JWT-3, JWT-4]

To achieve this the following functions are used:

Parameters used in this function

ParameterInput (data type)Description
issueList

Any given issue list. Usually this value is retrieved from a function (e.g. linkedIssues() or siblingIssuesUnderEpic()).

This function returns an


Variant where you define issue keys instead.

siblingIssuesUnderEpic(issueKeys) #Output: Issue list
Parser expressionDescription
siblingIssuesUnderEpic("CRM-15, HD-21") 

This example returns an issue list of issues linked to the same epics as CRM-15 and HD-21. excluding issues with keys CRM-15 and HD-21 from the output.

Parameters used in this function

ParameterInput (data type)Description
issueKeys

A comma separated list of issue keys.

This function returns an

If you want to include the given issues in the output, have a look at issuesUnderEpic() instead.


Use cases and examples

Parser function cloudsiblingIssuesUnderEpic()
Map(tick)
Notes

Status
Tech review

Style guide

Short description

Returns all sibling issues linked to the same epic

Output

Available since

Label