You are here

public function QueryFactoryInterface::get in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Entity/Query/QueryFactoryInterface.php \Drupal\Core\Entity\Query\QueryFactoryInterface::get()

Instantiates an entity query for a given entity type.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition.

string $conjunction: The operator to use to combine conditions: 'AND' or 'OR'.

Return value

\Drupal\Core\Entity\Query\QueryInterface An entity query for a specific configuration entity type.

4 methods override QueryFactoryInterface::get()
QueryFactory::get in core/lib/Drupal/Core/Entity/KeyValueStore/Query/QueryFactory.php
Instantiates an entity query for a given entity type.
QueryFactory::get in core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php
Instantiates an entity query for a given entity type.
QueryFactory::get in core/lib/Drupal/Core/Entity/Query/Null/QueryFactory.php
Instantiates an entity query for a given entity type.
QueryFactory::get in core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php
Instantiates an entity query for a given entity type.

File

core/lib/Drupal/Core/Entity/Query/QueryFactoryInterface.php, line 23

Class

QueryFactoryInterface
Defines an interface for QueryFactory classes.

Namespace

Drupal\Core\Entity\Query

Code

public function get(EntityTypeInterface $entity_type, $conjunction);