W3cubDocs

/Drupal 8

public static function Drupal::entityQueryAggregate

public static Drupal::entityQueryAggregate($entity_type, $conjunction = 'AND')

Returns the entity query aggregate object for this entity type.

Parameters

string $entity_type: The entity type (for example, node) for which the query object should be returned.

string $conjunction: (optional) Either 'AND' if all conditions in the query need to apply, or 'OR' if any of them is sufficient. Defaults to 'AND'.

Return value

\Drupal\Core\Entity\Query\QueryAggregateInterface The query object that can query the given entity type.

File

core/lib/Drupal.php, line 452
Contains \Drupal.

Class

Drupal
Static Service Container wrapper.

Code

public static function entityQueryAggregate($entity_type, $conjunction = 'AND') {
  return static::getContainer()->get('entity.query')->getAggregate($entity_type, $conjunction);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal.php/function/Drupal::entityQueryAggregate/8.1.x