Refines a query to match items where the specified property is greater than or equal to the specified value.
The ge()
function refines a TicketDefinitionsQueryBuilder
to match only items where the value of the specified propertyName
is greater than or equal to the specified value
.
ge()
matches only values of the same type. For example, 0
stored as a number doesn't match '0'
stored as a string.
If a property contains a number stored as a string (for example, '0'
), that value is compared alphabetically and not numerically. If a property doesn't have a value, that value is ranked lowest.
The following types of properties can be compared:
'abc'
is greater than 'ABC'
.
Property whose value is compared with value
.
Value to compare against.