Type Alias: AdvancedDateTimeFilter
type AdvancedDateTimeFilter = object;
Advanced filter
Advanced date-time filter.
Properties
$eq?
optional $eq?: string;
Checks for equality with the provided value.
$exists?
optional $exists?: boolean;
Checks if the current property exists.
$gt?
optional $gt?: string;
Greater than comparison with the provided value.
$gte?
optional $gte?: string;
Greater than or equal comparison with the provided value.
$in?
optional $in?: string[];
Checks if the property matches any of the provided values.
$lt?
optional $lt?: string;
Lower than comparison with the provided value.
$lte?
optional $lte?: string;
Lower than or equal comparison with the provided value.
$neq?
optional $neq?: string;
Checks for inequality with the provided value.