Interface NumFilterOps

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

interface NumFilterOps {
    $gt?: number | bigint;
    $gte?: number | bigint;
    $lt?: number | bigint;
    $lte?: number | bigint;
}

Properties

Properties

$gt?: number | bigint

Greater than (exclusive) some number

$gte?: number | bigint

Greater than or equal to some number

$lt?: number | bigint

Less than (exclusive) some number

$lte?: number | bigint

Less than or equal to some number