You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

This function filters a given issue list by the provided project keys.

Syntax
filterByProject(issueList, projectKeys) #Output: Issue list
Examples
Parser expressionDescription
filterByProject(linkedIssues(), "CRM, HR")

This example returns a list of linked issues belonging to projects with keys CRM or HR.

filterByProject(linkedIssues("blocks"), "SUPPORT")
This example returns a list of blocked issues in project SUPPORT.
Additional information

Parameters used in this function

ParameterInput (data type)Description
issueList

ISSUE LIST

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

TEXT

A text with project keys. If several project keys should be checked, they have to be provided as comma separated list.
Output

This function returns an ISSUE LIST