fetch_all {civis} | R Documentation |
Retrieve all results from a paginated endpoint
fetch_all(fn, ...)
fn |
The API function to be called. |
... |
Arguments passed to |
A list
with the concatenated results of each page of fn
.
Other pagination:
fetch_until()
## Not run:
columns <- fetch_all(tables_list_columns, id = 123)
column_names <- columns %>% purrr::map_chr("name")
## End(Not run)