Type alias BetweenCondition

BetweenCondition: {
    $between: {
        $gte: ConditionValue;
        $lte: ConditionValue;
    };
}

A clause that translates to the $between operator. The key path this appears on will be used in a BETWEEN ... AND ... expression.

Type declaration

Generated using TypeDoc