idf_last_changed | R Documentation |
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
idf_last_changed(connection, index = NULL, n = 100)
connection |
A connection object as returned
by |
index |
A data.frame as returned by |
n |
numeric. Maximum number of last changed resources to get. |
A vector of UUID
s or identifier
s of the most
recently changed n
resources.
## Not run:
connection <- connect_idaifield(pwd = "hallo", project = "rtest")
index <- get_field_index(connection)
last_changed <- idf_last_changed(
connection = connection,
index = index,
n = 100
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.