function QueryFactory::get
Returns a query object for a given entity type.
Parameters
string $entity_type_id: The entity type ID.
string $conjunction:
- AND: all of the conditions on the query need to match.
- OR: at least one of the conditions on the query need to match.
Return value
\Drupal\Core\Entity\Query\QueryInterface The query object that can query the given entity type.
File
-
core/
lib/ Drupal/ Core/ Entity/ Query/ QueryFactory.php, line 64
Class
- QueryFactory
- Factory class Creating entity query objects.
Namespace
Drupal\Core\Entity\QueryCode
public function get($entity_type_id, $conjunction = 'AND') {
return $this->entityTypeManager
->getStorage($entity_type_id)
->getQuery($conjunction);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.