Type alias ContainsCondition

ContainsCondition: {
    $contains: string;
}

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')

Type declaration

  • $contains: string

Generated using TypeDoc