public static Drupal::entityQuery($entity_type, $conjunction = 'AND')
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.
File
- core/lib/Drupal.php, line 435
- Contains \Drupal.
Class
- Drupal
- Static Service Container wrapper.
Code
public static function entityQuery($entity_type, $conjunction = 'AND') { return static::getContainer()->get('entity.query')->get($entity_type, $conjunction); }
Please login to continue.