You are here

interface QueryInterface in Multiversion 8

Same name and namespace in other branches
  1. 8.2 src/Entity/Query/QueryInterface.php \Drupal\multiversion\Entity\Query\QueryInterface

Hierarchy

Expanded class hierarchy of QueryInterface

All classes that implement QueryInterface

2 files declare their use of QueryInterface
MigrationTest.php in tests/src/Functional/MigrationTest.php
Query.php in src/Entity/Query/Sql/Query.php

File

src/Entity/Query/QueryInterface.php, line 7

Namespace

Drupal\multiversion\Entity\Query
View source
interface QueryInterface extends CoreQueryInterface {

  /**
   * @param string $id
   * @return \Drupal\multiversion\Entity\Query\QueryInterface
   */
  public function useWorkspace($id);

  /**
   * @return \Drupal\multiversion\Entity\Query\QueryInterface
   */
  public function isDeleted();

  /**
   * @return \Drupal\multiversion\Entity\Query\QueryInterface
   */
  public function isNotDeleted();

}

Members

Namesort descending Modifiers Type Description Overrides
AlterableInterface::addMetaData public function Adds additional metadata to the query. 3
AlterableInterface::addTag public function Adds a tag to a query. 3
AlterableInterface::getMetaData public function Retrieves a given piece of metadata. 3
AlterableInterface::hasAllTags public function Determines if a given query has all specified tags. 3
AlterableInterface::hasAnyTag public function Determines if a given query has any specified tag. 3
AlterableInterface::hasTag public function Determines if a given query has a given tag. 3
QueryInterface::accessCheck public function 1
QueryInterface::allRevisions public function Queries all the revisions. 1
QueryInterface::andConditionGroup public function Creates a new group of conditions ANDed together. 1
QueryInterface::condition public function Add a condition to the query or a condition group. 1
QueryInterface::count public function Makes this a count query. 1
QueryInterface::currentRevision public function Queries the current revision. 1
QueryInterface::execute public function Execute the query. 5
QueryInterface::exists public function Queries for a non-empty value on a field. 1
QueryInterface::getEntityTypeId public function Gets the ID of the entity type for this query. 1
QueryInterface::isDeleted public function
QueryInterface::isNotDeleted public function
QueryInterface::latestRevision public function Queries the latest revision. 1
QueryInterface::notExists public function Queries for an empty field. 1
QueryInterface::orConditionGroup public function Creates a new group of conditions ORed together. 1
QueryInterface::pager public function Enables a pager for the query. 1
QueryInterface::range public function 1
QueryInterface::sort public function 1
QueryInterface::tableSort public function Enables sortable tables for this query. 1
QueryInterface::useWorkspace public function