function ConditionAggregate::notExists

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Entity/Query/Sql/ConditionAggregate.php \Drupal\Core\Entity\Query\Sql\ConditionAggregate::notExists()
  2. 10 core/lib/Drupal/Core/Entity/Query/Sql/ConditionAggregate.php \Drupal\Core\Entity\Query\Sql\ConditionAggregate::notExists()
  3. 11.x core/lib/Drupal/Core/Entity/Query/Sql/ConditionAggregate.php \Drupal\Core\Entity\Query\Sql\ConditionAggregate::notExists()

Overrides ConditionAggregateInterface::notExists

File

core/lib/Drupal/Core/Entity/Query/Sql/ConditionAggregate.php, line 57

Class

ConditionAggregate
Defines the aggregate condition for sql based storage.

Namespace

Drupal\Core\Entity\Query\Sql

Code

public function notExists($field, $function, $langcode = NULL) {
    return $this->condition($field, $function, NULL, 'IS NULL', $langcode);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.