IntegerPropertyQuery extension

"Property query" for an integer field. Created by Query.property().

on

Properties

distinct bool

Available on PropertyQuery<int>, provided by the IntegerPropertyQuery extension

Get the status of "distinct-values" configuration.
getter/setter pair

Methods

average() double

Available on PropertyQuery<int>, provided by the IntegerPropertyQuery extension

Average value of the property over all objects matching the query.
count() int

Available on PropertyQuery<int>, provided by the IntegerPropertyQuery extension

Returns the count of non-null values.
find({int? replaceNullWith}) List<int>

Available on PropertyQuery<int>, provided by the IntegerPropertyQuery extension

Returns values of this property matching the query.
max() int

Available on PropertyQuery<int>, provided by the IntegerPropertyQuery extension

Maximum value of the property over all objects matching the query.
min() int

Available on PropertyQuery<int>, provided by the IntegerPropertyQuery extension

Minimum value of the property over all objects matching the query.
sum() int

Available on PropertyQuery<int>, provided by the IntegerPropertyQuery extension

Sum of all property values over objects matching the query.