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;
}

Properties

Properties

$neq: SimpleValue

Value to check against.

Generated using TypeDoc