Skip to contents

Returns a tibble showing each extract (full + diffs + merged total) with its creation date, row count, and download status. Use this to verify that all differential extracts were successfully downloaded and merged.

Usage

bs_diff_manifest(data)

Arguments

data

A tibble returned by bs_get_dataset_current().

Value

A tibble with columns extract, created_date, rows, status, or NULL if the data has no manifest attribute.

Examples

# \donttest{
if (bs_has_token()) {
users <- bs_get_dataset_current("Users")
bs_diff_manifest(users)
}
# }