Interface ShortAndExpressionInternal

Expression to provide a short way to specify an '$and' expression.

{ a: 1 , b: 3 }

// this is the same like:
{ $and: [{a: {$eq: 1}}, {b: {$eq:3}}]}
interface ShortAndExpression {
    [attributeName: string]: SimpleValue | ValueOperatorExpression | LogicExpression;
}

Indexable

[attributeName: string]: SimpleValue | ValueOperatorExpression | LogicExpression

Attribute that should match the condition.

Generated using TypeDoc