Type Alias: AdvancedIntegerFilter
type AdvancedIntegerFilter = object;
Defined in: gen/types.gen.ts:2674
Advanced filter
Advanced integer (int32) filter.
Properties
$eq?
optional $eq: number;
Defined in: gen/types.gen.ts:2678
Checks for equality with the provided value.
$exists?
optional $exists: boolean;
Defined in: gen/types.gen.ts:2686
Checks if the current property exists.
$gt?
optional $gt: number;
Defined in: gen/types.gen.ts:2690
Greater than comparison with the provided value.
$gte?
optional $gte: number;
Defined in: gen/types.gen.ts:2694
Greater than or equal comparison with the provided value.
$in?
optional $in: number[];
Defined in: gen/types.gen.ts:2706
Checks if the property matches any of the provided values.
$lt?
optional $lt: number;
Defined in: gen/types.gen.ts:2698
Lower than comparison with the provided value.
$lte?
optional $lte: number;
Defined in: gen/types.gen.ts:2702
Lower than or equal comparison with the provided value.
$neq?
optional $neq: number;
Defined in: gen/types.gen.ts:2682
Checks for inequality with the provided value.