Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 1 | % Generated by roxygen2: do not edit by hand |
| 2 | % Please edit documentation in R/KorAPQuery.R |
| 3 | \docType{class} |
| 4 | \name{KorAPQuery-class} |
| 5 | \alias{KorAPQuery-class} |
| 6 | \alias{KorAPQuery} |
| 7 | \alias{initialize,KorAPQuery-method} |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 8 | \alias{corpusQuery,KorAPConnection-method} |
| 9 | \alias{corpusQuery} |
Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 10 | \alias{fetchNext,KorAPQuery-method} |
| 11 | \alias{fetchNext} |
| 12 | \alias{fetchAll,KorAPQuery-method} |
| 13 | \alias{fetchAll} |
| 14 | \alias{fetchRest,KorAPQuery-method} |
| 15 | \alias{fetchRest} |
Marc Kupietz | 38a9d68 | 2024-12-06 16:17:09 +0100 | [diff] [blame] | 16 | \alias{buildWebUIRequestUrlFromString} |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 17 | \alias{buildWebUIRequestUrl} |
Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 18 | \alias{format.KorAPQuery} |
| 19 | \alias{show,KorAPQuery-method} |
| 20 | \title{Class KorAPQuery} |
| 21 | \usage{ |
Marc Kupietz | 76685f5 | 2019-11-25 17:46:06 +0100 | [diff] [blame] | 22 | \S4method{initialize}{KorAPQuery}( |
| 23 | .Object, |
| 24 | korapConnection = NULL, |
| 25 | request = NULL, |
| 26 | vc = "", |
| 27 | totalResults = 0, |
| 28 | nextStartIndex = 0, |
| 29 | fields = c("corpusSigle", "textSigle", "pubDate", "pubPlace", "availability", |
Marc Kupietz | 2078bde | 2023-08-27 16:46:15 +0200 | [diff] [blame] | 30 | "textClass", "snippet", "tokens"), |
Marc Kupietz | 76685f5 | 2019-11-25 17:46:06 +0100 | [diff] [blame] | 31 | requestUrl = "", |
| 32 | webUIRequestUrl = "", |
| 33 | apiResponse = NULL, |
| 34 | hasMoreMatches = FALSE, |
| 35 | collectedMatches = NULL |
| 36 | ) |
Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 37 | |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 38 | \S4method{corpusQuery}{KorAPConnection}( |
| 39 | kco, |
Marc Kupietz | a824d50 | 2025-05-02 15:40:23 +0200 | [diff] [blame^] | 40 | query = if (missing(KorAPUrl)) { |
| 41 | |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 42 | stop("At least one of the parameters query and KorAPUrl must be specified.", call. = |
Marc Kupietz | a824d50 | 2025-05-02 15:40:23 +0200 | [diff] [blame^] | 43 | FALSE) |
| 44 | } else { |
| 45 | httr2::url_parse(KorAPUrl)$query$q |
| 46 | }, |
Marc Kupietz | f912959 | 2025-01-26 19:17:54 +0100 | [diff] [blame] | 47 | vc = if (missing(KorAPUrl)) "" else httr2::url_parse(KorAPUrl)$query$cq, |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 48 | KorAPUrl, |
| 49 | metadataOnly = TRUE, |
Marc Kupietz | f912959 | 2025-01-26 19:17:54 +0100 | [diff] [blame] | 50 | ql = if (missing(KorAPUrl)) "poliqarp" else httr2::url_parse(KorAPUrl)$query$ql, |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 51 | fields = c("corpusSigle", "textSigle", "pubDate", "pubPlace", "availability", |
Marc Kupietz | 2078bde | 2023-08-27 16:46:15 +0200 | [diff] [blame] | 52 | "textClass", "snippet", "tokens"), |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 53 | accessRewriteFatal = TRUE, |
| 54 | verbose = kco@verbose, |
| 55 | expand = length(vc) != length(query), |
Marc Kupietz | d9b2fd7 | 2023-04-17 19:08:50 +0200 | [diff] [blame] | 56 | as.df = FALSE, |
| 57 | context = NULL |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 58 | ) |
| 59 | |
Marc Kupietz | 76685f5 | 2019-11-25 17:46:06 +0100 | [diff] [blame] | 60 | \S4method{fetchNext}{KorAPQuery}( |
| 61 | kqo, |
| 62 | offset = kqo@nextStartIndex, |
| 63 | maxFetch = maxResultsPerPage, |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 64 | verbose = kqo@korapConnection@verbose, |
| 65 | randomizePageOrder = FALSE |
Marc Kupietz | 76685f5 | 2019-11-25 17:46:06 +0100 | [diff] [blame] | 66 | ) |
Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 67 | |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 68 | \S4method{fetchAll}{KorAPQuery}(kqo, verbose = kqo@korapConnection@verbose, ...) |
Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 69 | |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 70 | \S4method{fetchRest}{KorAPQuery}(kqo, verbose = kqo@korapConnection@verbose, ...) |
Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 71 | |
Marc Kupietz | 38a9d68 | 2024-12-06 16:17:09 +0100 | [diff] [blame] | 72 | buildWebUIRequestUrlFromString(KorAPUrl, query, vc = "", ql = "poliqarp") |
| 73 | |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 74 | buildWebUIRequestUrl( |
| 75 | kco, |
Marc Kupietz | a824d50 | 2025-05-02 15:40:23 +0200 | [diff] [blame^] | 76 | query = if (missing(KorAPUrl)) { |
| 77 | |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 78 | stop("At least one of the parameters query and KorAPUrl must be specified.", call. = |
Marc Kupietz | a824d50 | 2025-05-02 15:40:23 +0200 | [diff] [blame^] | 79 | FALSE) |
| 80 | } else { |
| 81 | httr2::url_parse(KorAPUrl)$query$q |
| 82 | }, |
Marc Kupietz | f912959 | 2025-01-26 19:17:54 +0100 | [diff] [blame] | 83 | vc = if (missing(KorAPUrl)) "" else httr2::url_parse(KorAPUrl)$query$cq, |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 84 | KorAPUrl, |
Marc Kupietz | f912959 | 2025-01-26 19:17:54 +0100 | [diff] [blame] | 85 | ql = if (missing(KorAPUrl)) "poliqarp" else httr2::url_parse(KorAPUrl)$query$ql |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 86 | ) |
| 87 | |
Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 88 | \method{format}{KorAPQuery}(x, ...) |
| 89 | |
| 90 | \S4method{show}{KorAPQuery}(object) |
| 91 | } |
| 92 | \arguments{ |
| 93 | \item{.Object}{…} |
| 94 | |
Marc Kupietz | b897218 | 2019-09-20 21:33:46 +0200 | [diff] [blame] | 95 | \item{korapConnection}{KorAPConnection object} |
| 96 | |
Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 97 | \item{request}{query part of the request URL} |
| 98 | |
Marc Kupietz | e203832 | 2021-03-04 18:24:02 +0100 | [diff] [blame] | 99 | \item{vc}{string describing the virtual corpus in which the query should be performed. An empty string (default) means the whole corpus, as far as it is license-wise accessible.} |
Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 100 | |
| 101 | \item{totalResults}{number of hits the query has yielded} |
| 102 | |
| 103 | \item{nextStartIndex}{at what index to start the next fetch of query results} |
| 104 | |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 105 | \item{fields}{(meta)data fields that will be fetched for every match.} |
Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 106 | |
| 107 | \item{requestUrl}{complete URL of the API request} |
| 108 | |
| 109 | \item{webUIRequestUrl}{URL of a web frontend request corresponding to the API request} |
| 110 | |
| 111 | \item{apiResponse}{data-frame representation of the JSON response of the API request} |
| 112 | |
Marc Kupietz | 7776dec | 2019-09-27 16:59:02 +0200 | [diff] [blame] | 113 | \item{hasMoreMatches}{logical that signals if more query results can be fetched} |
Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 114 | |
| 115 | \item{collectedMatches}{matches already fetched from the KorAP-API-server} |
| 116 | |
Marc Kupietz | 617266d | 2025-02-27 10:43:07 +0100 | [diff] [blame] | 117 | \item{kco}{\code{\link[=KorAPConnection]{KorAPConnection()}} object (obtained e.g. from \code{KorAPConnection()}} |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 118 | |
| 119 | \item{query}{string that contains the corpus query. The query language depends on the \code{ql} parameter. Either \code{query} must be provided or \code{KorAPUrl}.} |
| 120 | |
| 121 | \item{KorAPUrl}{instead of providing the query and vc string parameters, you can also simply copy a KorAP query URL from your browser and use it here (and in \code{KorAPConnection}) to provide all necessary information for the query.} |
| 122 | |
Marc Kupietz | 132f005 | 2023-04-16 14:23:05 +0200 | [diff] [blame] | 123 | \item{metadataOnly}{logical that determines whether queries should return only metadata without any snippets. This can also be useful to prevent access rewrites. Note that the default value is TRUE. |
| 124 | If you want your corpus queries to return not only metadata, but also KWICS, you need to authorize |
| 125 | your RKorAPClient application as explained in the |
| 126 | \href{https://github.com/KorAP/RKorAPClient#authorization}{authorization section} |
| 127 | of the RKorAPClient Readme on GitHub and set the \code{metadataOnly} parameter to |
| 128 | \code{FALSE}.} |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 129 | |
| 130 | \item{ql}{string to choose the query language (see \href{https://github.com/KorAP/Kustvakt/wiki/Service:-Search-GET#user-content-parameters}{section on Query Parameters} in the Kustvakt-Wiki for possible values.} |
| 131 | |
| 132 | \item{accessRewriteFatal}{abort if query or given vc had to be rewritten due to insufficient rights (not yet implemented).} |
| 133 | |
| 134 | \item{verbose}{print progress information if true} |
| 135 | |
Marc Kupietz | ad8d2ed | 2025-04-05 15:37:38 +0200 | [diff] [blame] | 136 | \item{expand}{logical that decides if \code{query} and \code{vc} parameters are expanded to all of their combinations. Defaults to \code{TRUE}, iff \code{query} and \code{vc} have different lengths} |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 137 | |
| 138 | \item{as.df}{return result as data frame instead of as S4 object?} |
| 139 | |
Marc Kupietz | d9b2fd7 | 2023-04-17 19:08:50 +0200 | [diff] [blame] | 140 | \item{context}{string that specifies the size of the left and the right context returned in \code{snippet} |
| 141 | (provided that \code{metadataOnly} is set to \code{false} and that the necessary access right are met). |
| 142 | The format of the context size specifcation (e.g. \verb{3-token,3-token}) is described in the \href{https://github.com/KorAP/Kustvakt/wiki/Service:-Search-GET}{Service: Search GET documentation of the Kustvakt Wiki}. |
| 143 | If the parameter is not set, the default context size secification of the KorAP server instance will be used. |
| 144 | Note that you cannot overrule the maximum context size set in the KorAP server instance, |
| 145 | as this is typically legally motivated.} |
| 146 | |
Marc Kupietz | 67edcb5 | 2021-09-20 21:54:24 +0200 | [diff] [blame] | 147 | \item{kqo}{object obtained from \code{\link[=corpusQuery]{corpusQuery()}}} |
Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 148 | |
| 149 | \item{offset}{start offset for query results to fetch} |
| 150 | |
| 151 | \item{maxFetch}{maximum number of query results to fetch} |
| 152 | |
Marc Kupietz | 67edcb5 | 2021-09-20 21:54:24 +0200 | [diff] [blame] | 153 | \item{randomizePageOrder}{fetch result pages in pseudo random order if true. Use \code{\link[=set.seed]{set.seed()}} to set seed for reproducible results.} |
Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 154 | |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 155 | \item{...}{further arguments passed to or from other methods} |
Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 156 | |
Marc Kupietz | 3f57528 | 2019-10-04 14:46:04 +0200 | [diff] [blame] | 157 | \item{x}{KorAPQuery object} |
| 158 | |
Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 159 | \item{object}{KorAPQuery object} |
| 160 | } |
| 161 | \value{ |
Marc Kupietz | ad8d2ed | 2025-04-05 15:37:38 +0200 | [diff] [blame] | 162 | Depending on the \code{as.df} parameter, a tibble or a \code{\link[=KorAPQuery]{KorAPQuery()}} object that, among other information, contains the total number of results in \verb{@totalResults}. The resulting object can be used to fetch all query results (with \code{\link[=fetchAll]{fetchAll()}}) or the next page of results (with \code{\link[=fetchNext]{fetchNext()}}). |
Marc Kupietz | 67edcb5 | 2021-09-20 21:54:24 +0200 | [diff] [blame] | 163 | A corresponding URL to be used within a web browser is contained in \verb{@webUIRequestUrl} |
| 164 | Please make sure to check \verb{$collection$rewrites} to see if any unforeseen access rewrites of the query's virtual corpus had to be performed. |
Marc Kupietz | e203832 | 2021-03-04 18:24:02 +0100 | [diff] [blame] | 165 | |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 166 | The \code{kqo} input object with updated slots \code{collectedMatches}, \code{apiResponse}, \code{nextStartIndex}, \code{hasMoreMatches} |
Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 167 | } |
| 168 | \description{ |
Marc Kupietz | a6e4ee6 | 2021-03-05 09:00:15 +0100 | [diff] [blame] | 169 | This class provides methods to perform different kinds of queries on the KorAP API server. |
Marc Kupietz | 67edcb5 | 2021-09-20 21:54:24 +0200 | [diff] [blame] | 170 | \code{KorAPQuery} objects, which are typically created by the \code{\link[=corpusQuery]{corpusQuery()}} method, |
Marc Kupietz | a6e4ee6 | 2021-03-05 09:00:15 +0100 | [diff] [blame] | 171 | represent the current state of a query to a KorAP server. |
Marc Kupietz | 3f57528 | 2019-10-04 14:46:04 +0200 | [diff] [blame] | 172 | |
Marc Kupietz | 67edcb5 | 2021-09-20 21:54:24 +0200 | [diff] [blame] | 173 | \strong{\code{corpusQuery}} performs a corpus query via a connection to a KorAP-API-server |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 174 | |
Marc Kupietz | 67edcb5 | 2021-09-20 21:54:24 +0200 | [diff] [blame] | 175 | \strong{\code{fetchNext}} fetches the next bunch of results of a KorAP query. |
Marc Kupietz | 3f57528 | 2019-10-04 14:46:04 +0200 | [diff] [blame] | 176 | |
Marc Kupietz | 67edcb5 | 2021-09-20 21:54:24 +0200 | [diff] [blame] | 177 | \strong{\code{fetchAll}} fetches all results of a KorAP query. |
Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 178 | } |
| 179 | \examples{ |
Marc Kupietz | 6ae7605 | 2021-09-21 10:34:00 +0200 | [diff] [blame] | 180 | \dontrun{ |
| 181 | |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 182 | # Fetch metadata of every query hit for "Ameisenplage" and show a summary |
Marc Kupietz | a824d50 | 2025-05-02 15:40:23 +0200 | [diff] [blame^] | 183 | KorAPConnection() \%>\% |
| 184 | corpusQuery("Ameisenplage") \%>\% |
| 185 | fetchAll() |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 186 | } |
| 187 | |
Marc Kupietz | 6ae7605 | 2021-09-21 10:34:00 +0200 | [diff] [blame] | 188 | \dontrun{ |
| 189 | |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 190 | # Use the copy of a KorAP-web-frontend URL for an API query of "Ameise" in a virtual corpus |
| 191 | # and show the number of query hits (but don't fetch them). |
| 192 | |
Marc Kupietz | 617266d | 2025-02-27 10:43:07 +0100 | [diff] [blame] | 193 | KorAPConnection(verbose = TRUE) \%>\% |
Marc Kupietz | a824d50 | 2025-05-02 15:40:23 +0200 | [diff] [blame^] | 194 | corpusQuery( |
| 195 | KorAPUrl = |
| 196 | "https://korap.ids-mannheim.de/?q=Ameise&cq=pubDate+since+2017&ql=poliqarp" |
| 197 | ) |
Marc Kupietz | 6ae7605 | 2021-09-21 10:34:00 +0200 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | \dontrun{ |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 201 | |
| 202 | # Plot the time/frequency curve of "Ameisenplage" |
Marc Kupietz | a824d50 | 2025-05-02 15:40:23 +0200 | [diff] [blame^] | 203 | KorAPConnection(verbose = TRUE) \%>\% |
| 204 | { |
| 205 | . ->> kco |
| 206 | } \%>\% |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 207 | corpusQuery("Ameisenplage") \%>\% |
| 208 | fetchAll() \%>\% |
| 209 | slot("collectedMatches") \%>\% |
| 210 | mutate(year = lubridate::year(pubDate)) \%>\% |
| 211 | dplyr::select(year) \%>\% |
| 212 | group_by(year) \%>\% |
| 213 | summarise(Count = dplyr::n()) \%>\% |
Marc Kupietz | a824d50 | 2025-05-02 15:40:23 +0200 | [diff] [blame^] | 214 | mutate(Freq = mapply(function(f, y) { |
| 215 | f / corpusStats(kco, paste("pubDate in", y))@tokens |
| 216 | }, Count, year)) \%>\% |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 217 | dplyr::select(-Count) \%>\% |
| 218 | complete(year = min(year):max(year), fill = list(Freq = 0)) \%>\% |
| 219 | plot(type = "l") |
| 220 | } |
Marc Kupietz | 6ae7605 | 2021-09-21 10:34:00 +0200 | [diff] [blame] | 221 | \dontrun{ |
| 222 | |
Marc Kupietz | a824d50 | 2025-05-02 15:40:23 +0200 | [diff] [blame^] | 223 | q <- KorAPConnection() \%>\% |
| 224 | corpusQuery("Ameisenplage") \%>\% |
| 225 | fetchNext() |
Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 226 | q@collectedMatches |
Marc Kupietz | 657d8e7 | 2020-02-25 18:31:50 +0100 | [diff] [blame] | 227 | } |
Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 228 | |
Marc Kupietz | 6ae7605 | 2021-09-21 10:34:00 +0200 | [diff] [blame] | 229 | \dontrun{ |
| 230 | |
Marc Kupietz | a824d50 | 2025-05-02 15:40:23 +0200 | [diff] [blame^] | 231 | q <- KorAPConnection() \%>\% |
| 232 | corpusQuery("Ameisenplage") \%>\% |
| 233 | fetchAll() |
Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 234 | q@collectedMatches |
Marc Kupietz | 05b2277 | 2020-02-18 21:58:42 +0100 | [diff] [blame] | 235 | } |
Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 236 | |
Marc Kupietz | 6ae7605 | 2021-09-21 10:34:00 +0200 | [diff] [blame] | 237 | \dontrun{ |
| 238 | |
Marc Kupietz | a824d50 | 2025-05-02 15:40:23 +0200 | [diff] [blame^] | 239 | q <- KorAPConnection() \%>\% |
| 240 | corpusQuery("Ameisenplage") \%>\% |
| 241 | fetchRest() |
Marc Kupietz | 05b2277 | 2020-02-18 21:58:42 +0100 | [diff] [blame] | 242 | q@collectedMatches |
| 243 | } |
| 244 | |
Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 245 | } |
| 246 | \references{ |
| 247 | \url{https://ids-pub.bsz-bw.de/frontdoor/index/index/docId/9026} |
Marc Kupietz | dbd431a | 2021-08-29 12:17:45 +0200 | [diff] [blame] | 248 | |
| 249 | \url{https://ids-pub.bsz-bw.de/frontdoor/index/index/docId/9026} |
| 250 | } |
| 251 | \seealso{ |
Marc Kupietz | 67edcb5 | 2021-09-20 21:54:24 +0200 | [diff] [blame] | 252 | \code{\link[=KorAPConnection]{KorAPConnection()}}, \code{\link[=fetchNext]{fetchNext()}}, \code{\link[=fetchRest]{fetchRest()}}, \code{\link[=fetchAll]{fetchAll()}}, \code{\link[=corpusStats]{corpusStats()}} |
Marc Kupietz | e95108e | 2019-09-18 13:23:58 +0200 | [diff] [blame] | 253 | } |