function Condition::exists

Queries for the existence of a field.

Parameters

string $field:

string $langcode:

Return value

$this

Overrides ConditionInterface::exists

File

core/lib/Drupal/Core/Entity/Query/Null/Condition.php, line 21

Class

Condition
Defines the condition class for the null entity query.

Namespace

Drupal\Core\Entity\Query\Null

Code

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

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