Google\Cloud\Datastore\Query\Query::start PHP Méthode

start() public méthode

Example: $query->start($lastResultCursor);
See also: 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.
Résultat Query
    public function start($cursor)
    {
        $this->query['startCursor'] = $cursor;
        return $this;
    }