You are here

public function QueryFactory::getAggregate in Drupal 9

Same name in this branch
  1. 9 core/modules/workspaces/src/EntityQuery/QueryFactory.php \Drupal\workspaces\EntityQuery\QueryFactory::getAggregate()
  2. 9 core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php \Drupal\Core\Config\Entity\Query\QueryFactory::getAggregate()
  3. 9 core/lib/Drupal/Core/Entity/KeyValueStore/Query/QueryFactory.php \Drupal\Core\Entity\KeyValueStore\Query\QueryFactory::getAggregate()
  4. 9 core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php \Drupal\Core\Entity\Query\Sql\QueryFactory::getAggregate()
  5. 9 core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php \Drupal\Core\Entity\Query\Null\QueryFactory::getAggregate()
Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php \Drupal\Core\Entity\Query\Sql\QueryFactory::getAggregate()

Instantiates an aggregation query object for a given entity type.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition.

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 query object that can query the given entity type.

Throws

\Drupal\Core\Entity\Query\QueryException

Overrides QueryFactoryInterface::getAggregate

2 methods override QueryFactory::getAggregate()
PgsqlQueryFactory::getAggregate in core/modules/workspaces/src/EntityQuery/PgsqlQueryFactory.php
Instantiates an aggregation query object for a given entity type.
QueryFactory::getAggregate in core/modules/workspaces/src/EntityQuery/QueryFactory.php
Instantiates an aggregation query object for a given entity type.

File

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

Class

QueryFactory
Factory class creating entity query objects for the SQL backend.

Namespace

Drupal\Core\Entity\Query\Sql

Code

public function getAggregate(EntityTypeInterface $entity_type, $conjunction) {
  $class = QueryBase::getClass($this->namespaces, 'QueryAggregate');
  return new $class($entity_type, $conjunction, $this->connection, $this->namespaces);
}