if (FALSE) {
# Return values of field `basisOfRecord`
request_metadata() |>
unnest() |>
filter(field == basisOfRecord) |>
collect()
# Using `galah::unnest()` in this way is equivalent to:
show_all(fields, "basisOfRecord") |>
show_values()
# to add information to a species list:
request_metadata() |>
filter(list == "dr650") |>
select(everything()) |>
unnest() |>
collect()
}
Run the code above in your browser using DataLab