function Condition::notExists

Queries for the nonexistence of a field.

Parameters

string $field:

string $langcode:

Return value

$this

Overrides ConditionInterface::notExists

File

core/lib/Drupal/Core/Entity/Query/Sql/Condition.php, line 77

Class

Condition
Implements entity query conditions for SQL databases.

Namespace

Drupal\Core\Entity\Query\Sql

Code

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

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