Type alias ExistsCondition

ExistsCondition: {
    $exists: boolean;
}

A clause that translates to the $exists operator. It's value is a boolean expression:

  • when true, it performs an attribute_exists() function on the associated property
  • when false, it performs an attribute_not_exists() function on the associated property

Type declaration

  • $exists: boolean

Generated using TypeDoc