Type alias InCondition

InCondition: {
    $in: ConditionValue[];
}

A clause that translates to the $in operator. The key path this appears on will be used in a IN (...) expression.

e.g. { x: { $in: ['a', 'b', 'c] } } => x IN (:v0, :v1, :v2) (where :v0 = 'a', :v1 = 'b', etc)

Type declaration

Generated using TypeDoc