function EntityCondition::__construct
Constructs a new EntityCondition object.
File
-
core/
modules/ jsonapi/ src/ Query/ EntityCondition.php, line 78
Class
- EntityCondition
- A condition object for the EntityQuery.
Namespace
Drupal\jsonapi\QueryCode
public function __construct($field, $value, $operator = NULL) {
$this->field = $field;
$this->value = $value;
$this->operator = $operator ? $operator : '=';
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.