You are here

protected static property Condition::$supportedOperators in Entity API 8

The supported operators.

Type: string[]

File

src/QueryAccess/Condition.php, line 15

Class

Condition
Represents a single query access condition.

Namespace

Drupal\entity\QueryAccess

Code

protected static $supportedOperators = [
  '=',
  '<>',
  '<',
  '<=',
  '>',
  '>=',
  'BETWEEN',
  'NOT BETWEEN',
  'IN',
  'NOT IN',
  'IS NULL',
  'IS NOT NULL',
];