Versions Compared

Key

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


Page properties
hiddentrue



Status
Tech review

Status
colourYellow
titletodoReady for review

Style guide

Status
colourGreenYellow
titledoneReady for review

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



Page properties
hiddentrue


Short description

Returns all issues which are directly under a specific epic. linked to a given epic

Output

Status
subtletrue
titleissue list

Available since

Status
subtletrue
colourBlue
title2.3.0




UI Text Box
sizemedium
typeinfo

This function returns an issue list containing issues which are directly under the current issue's epic (i.e., stories are included in the output, but their sub-tasks are not).  linked to same epic as the current issue

The current issue will be included in the output, except if it is an epic itself. Duplicated issues

are filtered from the outputOnly standard issue issues (no sub-tasks) will be returned and duplicates are being removed.


Code Block
languagebash
titlesyntax
linenumberstrue
issuesUnderEpic() #Output: Issue list


Parameter description.
UI Expand
titleExamples
UI Expand
titleAdditional information


Parser expressionDescription


Code Block
languagebash
linenumberstrue
issuesUnderEpic()


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

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

Parameters used in this function

ParameterInput (data type)Description
xxx
Status
subtletrue
titledata type



UI Expand
titleOutput

This function returns an

Status
subtletrue
titleissue list




UI Text Box
sizemedium
typeinfo

This function returns Variant where you specify the issues in an issue list containing issues which are directly under the epic of issues in argument issues. Duplicated issues are filtered from the output.


Code Block
issuesUnderEpic(issueList issues) #Output: Issue list


UI Expand
titleExamples


Parser expressionDescription


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


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

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

To achieve this the following functions are used:



UI Expand
titleAdditional information

Parameters used in this function

ParameterInput (data type)Description
xxxissueList

Status
subtletrue
titledata typeissue list

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



UI Expand
titleOutput

This function returns an

Status
subtletrue
titleissue list




UI Text Box
sizemedium
typeinfo

Variant where you define issue _ keys instead of issues.Argument issue_keys is a comma-separated list of issue keys. Duplicated issues are filtered from the output.



Code Block
languagebash
titleSyntax
linenumberstrue
issuesUnderEpic(text issue_keysissueKeys) #Output: Issue list


UI Expand
titleExamples


Parser expressionDescription


Code Block
languagebash
linenumberstrue
 issuesUnderEpic("CRM-15, HD-21")


This example returns the an issue list of issues directly under epics of issues with keys linked to the same epics as CRN-15 and HD-21.



UI Expand
titleAdditional information

Parameters used in this function

ParameterInput (data type)Description
xxxissueKeys

Status
subtletrue
titledata typetext

A comma separated list of issue keysParameter description.



UI Expand
titleOutput

This function returns an

Status
subtletrue
titleissue list