if (FALSE) {
# Arrange grouped record counts by descending year
galah_call() |>
identify("perameles") |>
filter(year > 2019) |>
count() |>
arrange(galah::desc(year)) |>
collect()
# Return values of field `basisOfRecord`
request_metadata() |>
galah::unnest() |>
filter(field == basisOfRecord) |>
collect()
# Using `galah::unnest()` in this way is equivalent to:
show_all(fields, "basisOfRecord") |>
show_values()
}
Run the code above in your browser using DataLab