class Turbopuffer::Internal::NamespacePage

def next_page

Returns:
  • (self) -

Raises:
  • (Turbopuffer::HTTP::Error) -
def next_page
  unless next_page?
    message = "No more pages available. Please check #next_page? before calling ##{__method__}"
    raise RuntimeError.new(message)
  end
  req = Turbopuffer::Internal::Util.deep_merge(@req, {query: {cursor: next_cursor}})
  @client.request(req)
end