Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal.php \Drupal::entityQueryAggregate()
  2. 9 core/lib/Drupal.php \Drupal::entityQueryAggregate()

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.

10 calls to Drupal::entityQueryAggregate()
BlockContentSaveTest::testImport in core/modules/block_content/tests/src/Functional/BlockContentSaveTest.php
Checks whether content block IDs are saved properly during an import.
ContentEntityNullStorageTest::testEntityQuery in core/tests/Drupal/KernelTests/Core/Entity/ContentEntityNullStorageTest.php
Tests using entity query with ContentEntityNullStorage.
DrupalTest::testEntityQueryAggregate in core/tests/Drupal/Tests/Core/DrupalTest.php
Tests the entityQueryAggregate() method.
FileFieldTestBase::getLastFileId in core/modules/file/tests/src/Functional/FileFieldTestBase.php
Retrieves the fid of the last inserted file.
FileManagedFileElementTest::getLastFileId in core/modules/file/tests/src/FunctionalJavascript/FileManagedFileElementTest.php
Retrieves the fid of the last inserted file.

... See full list

File

core/lib/Drupal.php, line 524

Class

Drupal
Static Service Container wrapper.

Code

public static function entityQueryAggregate($entity_type, $conjunction = 'AND') {
  return static::entityTypeManager()
    ->getStorage($entity_type)
    ->getAggregateQuery($conjunction);
}