blob: da4b9385b5be4ecef2a218d38d04dae24526dfcf [file] [log] [blame]
Marc Kupietzc6160982025-06-24 15:57:51 +02001% Generated by roxygen2: do not edit by hand
2% Please edit documentation in R/KorAPQuery.R
3\name{fetchRest,KorAPQuery-method}
4\alias{fetchRest,KorAPQuery-method}
5\alias{fetchRest}
6\title{Fetches the remaining results of a KorAP query.}
7\usage{
8\S4method{fetchRest}{KorAPQuery}(kqo, verbose = kqo@korapConnection@verbose, ...)
9}
Marc Kupietzdc880ac2025-06-24 20:34:43 +020010\arguments{
11\item{kqo}{object obtained from \code{\link[=corpusQuery]{corpusQuery()}}}
12
13\item{verbose}{print progress information if true}
14
15\item{...}{further arguments passed to \code{\link[=fetchNext]{fetchNext()}}}
16}
17\value{
18The updated \code{kqo} object with remaining results in \verb{@collectedMatches}
19}
Marc Kupietzc6160982025-06-24 15:57:51 +020020\description{
21Fetches the remaining results of a KorAP query.
22}
23\examples{
24\dontrun{
25
26q <- KorAPConnection() \%>\%
27 corpusQuery("Ameisenplage") \%>\%
28 fetchRest()
29q@collectedMatches
30}
31
32}