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

    Interface NotEqualExpressionInternal

    '$neq' operator expression. Tests for an attribute not to be equal to a value.

    {a: {$neq: 1} }
    

    This is semantically equivalent to:

    {$not: {a: {$eq: 1}}}
    
    interface NotEqualExpression {
        $neq: SimpleValue;
    }
    Index

    Properties

    Properties

    $neq: SimpleValue

    Value to check against.