blob: 66f8aa9c8ea29663a01b3a8bab236a6ad8a2d429 [file] [log] [blame]
Marc Kupietz62da2b52019-09-12 17:43:34 +02001% Generated by roxygen2: do not edit by hand
2% Please edit documentation in R/KorAPQuery.R
3\name{KorAPFetchNext}
4\alias{KorAPFetchNext}
5\title{Fetch the next bunch of results of a KorAP query.}
6\usage{
7KorAPFetchNext(queryObject, offset = queryObject$nextStartIndex,
8 maxFetch = maxResultsPerPage, verbose = FALSE)
9}
10\arguments{
11\item{queryObject}{object obtained from \code{\link{KorAPQuery}}}
12
13\item{offset}{start offset for query results to fetch}
14
15\item{maxFetch}{maximum number of query results to fetch}
Marc Kupietz25aebc32019-09-16 18:40:50 +020016
17\item{verbose}{print progress information if true}
Marc Kupietz62da2b52019-09-12 17:43:34 +020018}
19\value{
20The \code{queryObject} input parameter with updated fields \code{$collectedMatches}, \code{$matches} (latest bunch only), \code{$nextStartIndex}, , \code{$hasMoreMatches}
21}
22\description{
23Fetch the next bunch of results of a KorAP query.
24}
25\examples{
Marc Kupietz25aebc32019-09-16 18:40:50 +020026q <- KorAPFetchNext(KorAPQuery(KorAPConnection(), "Ameisenplage"))
Marc Kupietz62da2b52019-09-12 17:43:34 +020027
28}
29\references{
30\url{https://ids-pub.bsz-bw.de/frontdoor/index/index/docId/9026}
31}
32\seealso{
33\code{\link{KorAPFetchRest}}, \code{\link{KorAPFetchAll}}
34}