You are here

public function ConfigEntityQuery::notExists in Configuration Views 8

Same name and namespace in other branches
  1. 2.0.x src/Plugin/views/query/ConfigEntityQuery.php \Drupal\config_views\Plugin\views\query\ConfigEntityQuery::notExists()

Add's an not exists command.

File

src/Plugin/views/query/ConfigEntityQuery.php, line 63

Class

ConfigEntityQuery
This query is able to work with config entities.

Namespace

Drupal\config_views\Plugin\views\query

Code

public function notExists($group, $field, $langcode = NULL) {
  $this->commands[$group][] = [
    'method' => 'notExists',
    'args' => [
      $field,
      $langcode,
    ],
  ];
}