Home >Backend Development >PHP Tutorial >The Drupal 8 version of EntityFieldQuery
Drupal 8's Entity Query API: A Comprehensive Guide
Drupal 8 transitioned from EntityFieldQuery (Drupal 7) to the more robust entity.query
service for querying entities. This service, accessible via static calls or dependency injection, facilitates complex queries using condition methods. This guide explores its capabilities.
Key Concepts
entity.query
Service: The core of Drupal 8's entity querying. Creates query objects for specific entity types (nodes, users, etc.).execute()
Method: Returns an array of entity IDs.entity_load()
/entity_load_multiple()
: Functions to load single or multiple entities using their IDs.Accessing the entity.query
Service
Two methods exist for accessing the service:
1. Static Access (Less Recommended):
<code class="language-php">$query = \Drupal::entityQuery('node');</code>
Replace 'node' with the desired entity type's machine name.
2. Dependency Injection (Recommended):
<code class="language-php">$entity_query_service = $container->get('entity.query'); $query = $entity_query_service->get('node');</code>
This approach is preferred for better testability and decoupling.
Building Queries
Here are examples demonstrating query construction:
Simple Query (Published Nodes):
<code class="language-php">$query = \Drupal::entityQuery('node') ->condition('status', 1); $nids = $query->execute();</code>
$nids
contains an array of node IDs.
Complex Query (Multiple Conditions):
<code class="language-php">$query = \Drupal::entityQuery('node') ->condition('status', 1) ->condition('changed', REQUEST_TIME, '<') ->condition('title', 'cat', 'CONTAINS') ->condition('field_tags.entity.name', 'cats'); $nids = $query->execute();</code>
This retrieves published nodes modified before the current time, containing "cat" in the title, and referencing the "cats" taxonomy term in field_tags
. Note the handling of referenced entities (field_tags.entity.name
).
Condition Groups (AND/OR):
<code class="language-php">$query = \Drupal::entityQuery('node') ->condition('status', 1) ->condition('changed', REQUEST_TIME, '<'); $group = $query->orConditionGroup() ->condition('title', 'cat', 'CONTAINS') ->condition('field_tags.entity.name', 'cats'); $nids = $query->condition($group)->execute();</code>
This uses an orConditionGroup
to find nodes matching either title or tag condition. andConditionGroup
is also available.
Loading Entities
After executing a query, use these functions to load entities:
Single Entity:
<code class="language-php">$node = entity_load('node', $nids[0]);</code>
Multiple Entities:
<code class="language-php">$nodes = entity_load_multiple('node', $nids);</code>
These functions are wrappers for the entity storage manager. Direct access via the storage manager is also possible using dependency injection:
<code class="language-php">$node_storage = $container->get('entity.manager')->getStorage('node'); $nodes = $node_storage->loadMultiple($nids);</code>
Conclusion
Drupal 8's Entity Query API offers a significant improvement over its predecessor. Its object-oriented approach and flexible condition methods empower developers to build sophisticated entity queries. Remember to utilize dependency injection for better code practices.
The above is the detailed content of The Drupal 8 version of EntityFieldQuery. For more information, please follow other related articles on the PHP Chinese website!