function Drupal::entityQuery
Same name in other branches
- 9 core/lib/Drupal.php \Drupal::entityQuery()
- 10 core/lib/Drupal.php \Drupal::entityQuery()
- 11.x core/lib/Drupal.php \Drupal::entityQuery()
Returns the entity query 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\QueryInterface The query object that can query the given entity type.
15 calls to Drupal::entityQuery()
- comment_entity_predelete in core/
modules/ comment/ comment.module - Implements hook_entity_predelete().
- comment_field_config_delete in core/
modules/ comment/ comment.module - Implements hook_ENTITY_TYPE_delete() for 'field_config'.
- comment_user_predelete in core/
modules/ comment/ comment.module - Implements hook_ENTITY_TYPE_predelete() for user entities.
- DrupalTest::testEntityQuery in core/
tests/ Drupal/ Tests/ Core/ DrupalTest.php - Tests the entityQuery() method.
- EntityReferenceAutoCreateTest::testAutoCreate in core/
modules/ field/ tests/ src/ Functional/ EntityReference/ EntityReferenceAutoCreateTest.php - Tests that the autocomplete input element appears and the creation of a new entity.
File
-
core/
lib/ Drupal.php, line 482
Class
- Drupal
- Static Service Container wrapper.
Code
public static function entityQuery($entity_type, $conjunction = 'AND') {
return static::entityTypeManager()->getStorage($entity_type)
->getQuery($conjunction);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.