You are here

public function Query::__construct in MongoDB 8

Constructs this object.

Parameters

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

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.

array $namespaces: List of potential namespaces of the classes belonging to this query.

Overrides QueryBase::__construct

File

src/Entity/Query.php, line 19
Contains Drupal\mongodb\Entity\ContentEntityStorage.

Class

Query

Namespace

Drupal\mongodb\Entity

Code

public function __construct(MongoCollectionFactory $mongo, EntityTypeInterface $entity_type, $conjuction, array $namespaces) {
  parent::__construct($entity_type, $conjuction, $namespaces);
  $this->mongo = $mongo;
}