Status
Tech review

Style guide




Short description
Returns the list of all sub-tasks with the same parent like the current issue.
Output

Available since




This function returns the list of all sub-tasks with the same parent like the current issue.

In case the current issue is not a sub-task, an empty issue list will be returned.


siblingSubtasks() is equivalent to subtasks(%{parent.key})EXCEPT issueKeysToIssueList(%{issue.key}).


siblingSubtasks() #Output: Issue list



Parser expressionDescription


siblingSubtasks()


This example returns all sub-tasks with the same parent issue like the current one - excluding the current issue.



This function returns an .

If the current issue is not a sub-task or there are no sibling sub-tasks, the function returns an empty .




Variant where you can specify an issue list to get the sibling sub-tasks from.


siblingSubtasks(issueList) #Output: Issue list



Parser expressionDescription


siblingSubtasks(linkedIssues())


This example returns all sibling sub-tasks of the currently linked issues.



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 subtasks()).



This function returns an




Variant where you can specify a comma separated list of issue keys to get the sibling sub-tasks from.


siblingSubtasks(issueKeys) #Output: Issue list



Parser expressionDescription


siblingSubtasks(linkedIssues())


This example returns all sibling sub-tasks of the currently linked issues.



Parameters used in this function

ParameterInput (data type)Description
issueKeys

A text with comma separated issue keys.



This function returns an