interface AdvancedDateTimeFilter {
    $eq?: string;
    $exists?: boolean;
    $gt: string;
    $gte: string;
    $in: string[];
    $lt: string;
    $lte: string;
    $neq?: string;
}

Properties

$eq?: string

Checks for equality with the provided value.

$exists?: boolean

Checks if the current property exists.

$gt: string

Greater than comparison with the provided value.

$gte: string

Greater than or equal comparison with the provided value.

$in: string[]

Checks if the property matches any of the provided values.

$lt: string

Lower than comparison with the provided value.

$lte: string

Lower than or equal comparison with the provided value.

$neq?: string

Checks for inequality with the provided value.

Generated using TypeDoc