You are here

public function ConditionAggregate::notExists in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Entity/Query/Sql/ConditionAggregate.php \Drupal\Core\Entity\Query\Sql\ConditionAggregate::notExists()

Queries for the nonexistence of a field.

Parameters

string $field:

string $function:

string $langcode:

Return value

\Drupal\Core\Entity\Query\ConditionInterface

Overrides ConditionAggregateInterface::notExists

See also

\Drupal\Core\Entity\Query\QueryInterface::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);
}