QueryFactory::getAggregate

public QueryFactory::getAggregate(EntityTypeInterface $entity_type, $conjunction)

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

File

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

Class

QueryFactory
Provides a factory for creating entity query objects for the null backend.

Namespace

Drupal\Core\Entity\Query\Null

Code

public function getAggregate(EntityTypeInterface $entity_type, $conjunction) {
  return new Query($entity_type, $conjunction, $this->namespaces);
}
doc_Drupal
2016-10-29 09:35:53
Comments
Leave a Comment

Please login to continue.