Skip to main content
Version: 8.9

Type Alias: AdvancedIntegerFilter

type AdvancedIntegerFilter = object;

Advanced filter

Advanced integer (int32) filter.

Properties

$eq?

optional $eq?: number;

Checks for equality with the provided value.


$exists?

optional $exists?: boolean;

Checks if the current property exists.


$gt?

optional $gt?: number;

Greater than comparison with the provided value.


$gte?

optional $gte?: number;

Greater than or equal comparison with the provided value.


$in?

optional $in?: number[];

Checks if the property matches any of the provided values.


$lt?

optional $lt?: number;

Lower than comparison with the provided value.


$lte?

optional $lte?: number;

Lower than or equal comparison with the provided value.


$neq?

optional $neq?: number;

Checks for inequality with the provided value.