Google\Cloud\Datastore\Query\Query::end PHP 메소드

end() 공개 메소드

Example: $query->end($lastResultCursor);
또한 보기: https://cloud.google.com/datastore/docs/concepts/queries#cursors_limits_and_offsets Cursors, Limits and Offsets
public end ( string $cursor ) : Query
$cursor string The cursor on which to end the result.
리턴 Query
    public function end($cursor)
    {
        $this->query['endCursor'] = $cursor;
        return $this;
    }