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

    Interface NOrExpressionInternal

    '$nor' operator expression. Logical 'negating or' expression. Semantically the same as a $not : { $or : [...] } combination.

    { $nor: [{a: {$eq: 1}}, {a: {$eq:2}}]}
    
    interface NOrExpression {
        $nor: readonly ComplexQueryExpression[];
    }
    Index

    Properties

    Properties

    $nor: readonly ComplexQueryExpression[]

    Expression containing other expressions to be combined with 'negating or'.