Get a vector of UUIDs or identifiers of the last n changed resources
Source:R/idf_changes.R
idf_last_changed.Rd
Retrieves the names/identifiers or UUIDs of the most recently changed
resources in the database. If an index as returned by get_field_index()
or get_uid_list()
is returned, the UUIDs are replaced by identifiers.
If not, the UUIDs are returned directly and can be used for querying e.g.
with
Arguments
- connection
A connection object as returned by
connect_idaifield()
- index
A data.frame as returned by
get_field_index()
(orget_uid_list()
).- n
numeric. Maximum number of last changed resources to get.
Examples
if (FALSE) {
connection <- connect_idaifield(pwd = "hallo", project = "rtest")
index <- get_field_index(connection)
last_changed <- idf_last_changed(
connection = connection,
index = index,
n = 100
)
}