projectsWhereNumberProperty()

This JQL function returns projects with specific properties containing a numeric value.


Bash
projectsWhereNumberProperty(propertyName, operator, number) #Output: Text list


Examples

Parser expression

Description

Bash
project in projectsWhereNumberProperty("maximumNumberOfTryOuts", ">", 3)

This example returns a list of projects where the property called maximumNumberOfTryOuts is bigger than 3, e.g. text {maximumNumberOfTryOuts=5} is present in the project's description.

Bash
project in projectsWhereNumberProperty("numberOfLevels", "=", 5)

This example returns a list of projects where the property called numberOfLevels is equal to 5, e.g. text {numberOfLevels=5} is present in the project's description.

Additional information

Parameters used in this function

Parameter

Input (data type)

Description

propertyName

text

The name of a project property containing a numeric value.

operator

text

A valid comparison operator.

number

number

The number to be compared with the value stored in the project property.

Output

This function returns a text list .

The result is not what you expected? The number of returned issues feels too low?

By default, the maximum number of issues that will be returned by the JQL subquery, and thus can be processed by the logical expression is 1000.

To ensure the performance of your entire Jira instance, we limit the execution of the JQL function in terms of issue count and execution time. Please refer to your admin if you need to change the configuration.