Interface DateFilterOps

Represents filter operations exclusive to Dates (or dynamically typed) fields

interface DateFilterOps {
    $gt?: Date;
    $gte?: Date;
    $lt?: Date;
    $lte?: Date;
}

Properties

Properties

$gt?: Date

Greater than (exclusive) some date.

{ $date: number } can be replaced with new Date(number).

$gte?: Date

Greater than or equal to some date.

{ $date: number } can be replaced with new Date(number).

$lt?: Date

Less than (exclusive) some date.

{ $date: number } can be replaced with new Date(number).

$lte?: Date

Less than or equal to some date.

{ $date: number } can be replaced with new Date(number).