A clause that translates to the $contains operator. It tests to see if the given value is contained in the attribute (which may be a Set or string).
$contains
It translates to the contains() function.
contains()
e.g. { x: { $contains: 'abc' } } => contains(x, :value0) (where :value0 = 'abc')
{ x: { $contains: 'abc' } }
contains(x, :value0)
:value0 = 'abc'
Generated using TypeDoc
A clause that translates to the
$contains
operator. It tests to see if the given value is contained in the attribute (which may be a Set or string).It translates to the
contains()
function.e.g.
{ x: { $contains: 'abc' } }
=>contains(x, :value0)
(where:value0 = 'abc'
)