function Drupal::entityQueryAggregate
Same name in other branches
- 9 core/lib/Drupal.php \Drupal::entityQueryAggregate()
- 10 core/lib/Drupal.php \Drupal::entityQueryAggregate()
- 11.x 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.
1 call to Drupal::entityQueryAggregate()
- DrupalTest::testEntityQueryAggregate in core/
tests/ Drupal/ Tests/ Core/ DrupalTest.php - Tests the entityQueryAggregate() method.
File
-
core/
lib/ Drupal.php, line 499
Class
- Drupal
- Static Service Container wrapper.
Code
public static function entityQueryAggregate($entity_type, $conjunction = 'AND') {
return static::entityTypeManager()->getStorage($entity_type)
->getAggregateQuery($conjunction);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.