Fetches all pages of results and combines them into a single tibble.
paginate_all(fetch_fn, page_size = 100, max_pages = Inf, progress = TRUE)A tibble containing all fetched results.
A function that takes page and size arguments and returns
a list with data (the results) and meta (pagination metadata).
Number of items per page. Default 100.
Maximum number of pages to fetch. Default Inf.
Show progress bar. Default TRUE.