Skip to content

ExistsExpression

type ExistsExpression = object;

Represents an EXISTS expression: attribute_exists(<operand>) or attribute_not_exists(<operand>)

optional not: true;

operand: Operand;

type: typeof $exists;