Google\Cloud\Datastore\Query\Query::start PHP Метод

start() публичный Метод

Example: $query->start($lastResultCursor);
См. также: https://cloud.google.com/datastore/docs/concepts/queries#cursors_limits_and_offsets Cursors, Limits and Offsets
public start ( string $cursor ) : Query
$cursor string The cursor on which to start the result.
Результат Query
    public function start($cursor)
    {
        $this->query['startCursor'] = $cursor;
        return $this;
    }