Type alias LtEqCondition

LtEqCondition: {
    $lte: ConditionValue;
}

A clause that translates to the $lte operator. The key path this appears on will be used in a <= expression.

e.g. { 'x.y': { $lte: 5 } } => x.y <= :value0 // (where :value0 is set to 5)

Type declaration

Generated using TypeDoc