function 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
File
-
core/
lib/ Drupal/ Core/ Entity/ Query/ Null/ Condition.php, line 28
Class
- Condition
- Defines the condition class for the null entity query.
Namespace
Drupal\Core\Entity\Query\NullCode
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.