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

Compare with Current View Page History

« Previous Version 12 Next »

This JQL function is used for searching project properties containing a numeric value.

Syntax
projectsWhereNumberProperty(propertyName, operator, number) #Output: Issues
Examples
Parser expressionDescription
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.
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

ParameterInput (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 PROJECT LIST.