'$and' operator expression. Logical 'and' that combines other expressions.

{ $and: [{a: {$eq: 1}}, {b: {$eq:3}}]}
interface AndExpression {
    $and: readonly ComplexQueryExpression[];
}

Properties

Properties

$and: readonly ComplexQueryExpression[]

Expression containing other expressions to be combined with 'and'.

Generated using TypeDoc