Skip to contents

Execute a request built by ris_req_case_law() and return parsed results. All available pages are fetched iteratively using httr2::req_perform_iterative().

Usage

ris_perform_case_law(req, echo = FALSE)

Arguments

req

An httr2_request object, typically built with ris_req_case_law().

echo

Logical. If TRUE, prints the equivalent RIS website URLs and the number of returned rows.

Value

A tidy tibble with parsed search results. Includes list-columns content_urls and app_metadata.

Examples

if (FALSE) { # \dontrun{
req <- ris_req_case_law(
  application = "federal_administrative_court",
  query = "Asyl"
)
results <- ris_perform_case_law(req)
} # }