public function QueryFactory::getAggregate

public QueryFactory::getAggregate($entity_type_id, $conjunction = 'AND')

Returns an aggregated query object for a given entity type.

Parameters

string $entity_type_id: The entity type ID.

string $conjunction:

  • AND: all of the conditions on the query need to match.
  • OR: at least one of the conditions on the query need to match.

Return value

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

File

core/lib/Drupal/Core/Entity/Query/QueryFactory.php, line 69

Class

QueryFactory
Factory class Creating entity query objects.

Namespace

Drupal\Core\Entity\Query

Code

public function getAggregate($entity_type_id, $conjunction = 'AND') {
  return $this->entityManager->getStorage($entity_type_id)->getAggregateQuery($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!Core!Entity!Query!QueryFactory.php/function/QueryFactory::getAggregate/8.1.x