A clause that translates to the $in operator. The key path this appears on will be used in a IN (...) expression.
$in
IN (...)
e.g. { x: { $in: ['a', 'b', 'c] } } => x IN (:v0, :v1, :v2) (where :v0 = 'a', :v1 = 'b', etc)
{ x: { $in: ['a', 'b', 'c] } }
x IN (:v0, :v1, :v2)
:v0 = 'a'
:v1 = 'b'
Generated using TypeDoc
A clause that translates to the
$in
operator. The key path this appears on will be used in aIN (...)
expression.e.g.
{ x: { $in: ['a', 'b', 'c] } }
=>x IN (:v0, :v1, :v2)
(where:v0 = 'a'
,:v1 = 'b'
, etc)