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

Compare with Current View Page History

« Previous Version 11 Next »

This JQL function is used for searching for users by checking against user properties that contain numeric values.

Syntax
usersWithNumericProperty(propertyName, operator, number) #Output: User list
Examples
Parser expressionDescription
assignee in usersWithNumericProperty("dailyTasks", ">", "4")
This example returns all issues where the Assignee's property dailyTasks is bigger than 4.
reporter in usersWithNumericProperty("remainingHolidays", "=", 11)
This example returns all issues where the Reporter's property remainingHolidays is equals to 11.
Additional information

Parameters used in this function

ParameterInput (data type)Description
propertyName

TEXT

The name of an user property containing a numeric value.
operator

TEXT

A valid comparison operator.

number

NUMBER

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

This function returns a USER LIST.