protected function Query::result

protected Query::result()

Executes the query and returns the result.

Return value

int|array Returns the query result as entity IDs.

File

core/lib/Drupal/Core/Entity/Query/Sql/Query.php, line 250

Class

Query
The SQL storage entity query class.

Namespace

Drupal\Core\Entity\Query\Sql

Code

protected function result() {
  if ($this->count) {
    return $this->sqlQuery->countQuery()->execute()->fetchField();
  }
  // Return a keyed array of results. The key is either the revision_id or
  // the entity_id depending on whether the entity type supports revisions.
  // The value is always the entity id.
  return $this->sqlQuery->execute()->fetchAllKeyed();
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Entity!Query!Sql!Query.php/function/Query::result/8.1.x