Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


UI Text Box
sizemedium
typeinfo

This function returns an issue list containing all issues which are directly under a given issue's parent according to Advanced Roadmaps hierarchy excluding the given issue itself. In the case that the given issue is a sub-task an issue list with its sibling sub-tasks is returned, even outside of the advanced roadmap hierachy.

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:


Code Block
languagebash
titleSyntax
linenumberstrue
siblingIssues() #Output: Issue list


UI Expand
titleExamples


Parser expressionDescription


Code Block
languagebash
linenumberstrue
siblingIssues()


Considering that current issue is JWT-6, this expression returns the sibling issues of this issue:

[JWT-4, JWT-12]


Code Block
languagebash
linenumberstrue
siblingIssues()


Considering that current issue is JWT-7, this expression returns the sibling issues of this issue:

[JWT-10]



UI Expand
titleOutput

This function returns an

Status
subtletrue
titleissue list




UI Text Box
sizemedium
typeinfo

Variant where you additionally define issues.

Duplicated issues are filtered from the output.


Code Block
languagebash
titleSyntax
linenumberstrue
siblingIssues(issueList) #Output: Issue list


UI Expand
titleExamples


Parser expressionDescription


Code Block
languagebash
linenumberstrue
siblingIssues(linkedIssues("is blocked by")) 


Considering that expression linkedIssues("is blocked by") returns [JWT-2, JWT-9], this example returns the sibling issues of these issues:

[JWT-11, JWT-16]

To achieve this the following functions are used:



UI Expand
titleAdditional information

Parameters used in this function

ParameterInput (data type)Description
issueList

Status
subtletrue
titleissue list

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



UI Expand
titleOutput

This function returns an

Status
subtletrue
titleissue list




UI Text Box
sizemedium
typeinfo

Variant where you define issue keys instead.

Duplicated issues are filtered from the output.


Code Block
languagebash
titleSyntax
linenumberstrue
siblingIssues(issueKeys) #Output: Issue list


UI Expand
titleExamples


Parser expressionDescription


Code Block
languagebash
linenumberstrue
 siblingIssues("JWT-3, JWT-7")


This example returns the sibling issues of JWT-3 and JWT-7:
[JWT-4, JWT-12, JWT-8]



UI Expand
titleAdditional information

Parameters used in this function

ParameterInput (data type)Description
issueKeys

Status
subtletrue
titletext

A comma separated list of issue keys.



UI Expand
titleOutput

This function returns an

Status
subtletrue
titleissue list


UI Text Box
typetip

To return the issues just under an issue within the Advanced Roadmaps hierarchy, you might want to have a look into the issuesUnder() function.

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 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

Page properties report
firstcolumnUse case
headingsJWT feature, Workflow function, Field type, Automated action, Parser functions
cqllabel = "parser_func_siblingissues" and space = currentSpace()


Page properties
hiddentrue
id1


Parser function cloud
Map(error)
Notes

Not possible to navigate through the Advanced Roadmaps hierarchy. Only the Parent link is accessible, but then it's not possible to acces their children, or I have not found the way,




Page properties
hiddentrue



Status
Tech review

Status
colourYellow
titleReady for review

Style guide

Status
colourGreen
titledone

Status
titletodo
Status
colourYellow
titleReady for review
Status
colourGreen
titledone
Status
colourRed
titleflagged



Page properties
hiddentrue


Short description

Returns all issues which are located directly under a given issue's parent according to Advanced Roadmaps hierarchy.

Output

Status
subtletrue
titleissue list

Available since

Status
subtletrue
colourBlue
title3.1.0

Label

Status
colourRed
titlestaff pick