notExists method

SelectorBuilder notExists(
  1. String fieldName
)

Implementation

SelectorBuilder notExists(String fieldName) {
  _addExpression(fieldName, {'\$exists': false});
  return this;
}