This function filters the given issue list by the provided resolutions.
Syntax
filterByResolution(issueList, resolutions) #Output: Issue list
Use cases and examples
Use case |
---|
No content found. |
This function filters the given issue list by the provided resolutions.
filterByResolution(issueList, resolutions) #Output: Issue list
Parser expression | Description |
---|---|
%{filterByResolution(subtasks(), "Won't Fix, Cancelled")} | This example returns the issue list of sub-tasks with resolutions Won't Fix or Cancelled. To achieve this, the following functions are used: |
%{filterByResolution(linkedIssues(), "")} | This example returns an issue list with all unresolved linked issues. To achieve this, the following functions are used: |
%{filterByResolution(linkedIssues(), resolution(10000))} | This example returns an issue list with all linked issue that have the resolution with id 10000 set. The function resolution() resolves the provided ID and parses the resolution name. This way the function will still work even if the resolution name might change at some point. |
filterByResolution(siblingIssuesUnderEpic(), %{issue.resolution}) | This example returns an issue list with all siblings of the same epic that have the same resolution like the current issue. To achieve this, the following functions are used: |
Parameters used in this function
Parameter | Input (data type) | Description |
---|---|---|
issueList | ISSUE LIST | Any given issue list. Usually this value is retrieved from a function (e.g. linkedIssues() or subtasks()). |
resolutions | TEXT | Any given resolution name. Several resolutions can be provided as comma separated list. |
This function returns an ISSUE LIST
Use case |
---|
No content found. |
Powered by Atlassian Confluence 8.5.18, themed by Refined 7.6.7 and Decadis AG