Skip to contents

Returns a tibble of every version on the server, optionally filtered by date. Wraps MerginClient.project_versions() via a bundled helper script.

Usage

rfp_mergin_history(project, since = NULL, until = NULL)

Arguments

project

Character. Full project name as namespace/project.

since

POSIXct, Date, or ISO-8601 string. Keep only versions created on or after this time. Default NULL (no lower bound).

until

POSIXct, Date, or ISO-8601 string. Keep only versions created on or before this time. Default NULL (no upper bound).

Value

Tibble with columns project, version, created (POSIXct, UTC), author, added, removed, updated, updated_diff, project_size.

Examples

if (FALSE) { # \dontrun{
rfp_mergin_history("newgraph/restoration_wedzin_kwa",
                   since = "2026-01-01")
} # }