function QueryInterface::range
Same name in other branches
- 9 core/lib/Drupal/Core/Entity/Query/QueryInterface.php \Drupal\Core\Entity\Query\QueryInterface::range()
- 8.9.x core/lib/Drupal/Core/Entity/Query/QueryInterface.php \Drupal\Core\Entity\Query\QueryInterface::range()
- 10 core/lib/Drupal/Core/Entity/Query/QueryInterface.php \Drupal\Core\Entity\Query\QueryInterface::range()
Defines the range of the query.
Parameters
int|null $start: (optional) The first record from the result set to return. If NULL, removes any range directives that are set.
int|null $length: (optional) The maximum number of rows to return. If $start and $length are NULL, then a complete result set will be generated. If $start is not NULL and $length is NULL, then an empty result set will be generated.
Return value
$this
1 method overrides QueryInterface::range()
- QueryBase::range in core/
lib/ Drupal/ Core/ Entity/ Query/ QueryBase.php - Defines the range of the query.
File
-
core/
lib/ Drupal/ Core/ Entity/ Query/ QueryInterface.php, line 172
Class
- QueryInterface
- Interface for entity queries.
Namespace
Drupal\Core\Entity\QueryCode
public function range($start = NULL, $length = NULL);
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.