Same name in this branch
  1. 10 core/lib/Drupal/Core/Database/Query/Condition.php \Drupal\Core\Database\Query\Condition::notExists()
  2. 10 core/lib/Drupal/Core/Config/Entity/Query/Condition.php \Drupal\Core\Config\Entity\Query\Condition::notExists()
  3. 10 core/lib/Drupal/Core/Entity/Query/Null/Condition.php \Drupal\Core\Entity\Query\Null\Condition::notExists()
Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Config/Entity/Query/Condition.php \Drupal\Core\Config\Entity\Query\Condition::notExists()
  2. 9 core/lib/Drupal/Core/Config/Entity/Query/Condition.php \Drupal\Core\Config\Entity\Query\Condition::notExists()

Queries for the nonexistence of a field.

Parameters

string $field: The field to query for nonexistence.

string $langcode: (optional) For which language the entity should be prepared, defaults to the current content language.

Return value

$this

Overrides ConditionInterface::notExists

See also

\Drupal\Core\Entity\Query\QueryInterface::notExists()

File

core/lib/Drupal/Core/Config/Entity/Query/Condition.php, line 95

Class

Condition
Defines the condition class for the config entity query.

Namespace

Drupal\Core\Config\Entity\Query

Code

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