map.apps Bundle APIs 4.20.0
    Preparing search index...

    Interface ElementMatchExpressionInternal

    '$elemMatch' operator expression. Only valid if an attribute has an array as value. Tests for at least one element in the array to fulfill the given expression.

    {a:{$elemMatch: {name:{$eq: "x"}}}}
    
    interface ElementMatchExpression {
        $elemMatch: readonly ComplexQueryExpression[];
    }
    Index

    Properties

    Properties

    $elemMatch: readonly ComplexQueryExpression[]

    Expression to check against.