Version: any
Is it possible to surface the data about who last updated a link, or when it was updated, with a keyword replacement (or JS API, or at all)?
I realised that data about when a link was updated must be stored because Purge Trash is able to purge only those assets over a certain link age. Checking the DB in the test image confirmed that the data is stored (columns “updated” and “updated_userid”)
matrix=> \d sq_ast_lnk
Table "public.sq_ast_lnk"
Column | Type | Modifiers
----------------+-----------------------------+-------------------------------
linkid | integer | not null
majorid | character varying(15) | not null
minorid | character varying(15) | not null
link_type | integer | not null
value | character varying(255) | default ''::character varying
sort_order | integer | not null default 0
is_dependant | character(1) | not null default '0'::bpchar
is_exclusive | character(1) | not null default '0'::bpchar
updated | timestamp without time zone | not null
updated_userid | character varying(255) | not null
locked | character(1) | not null default '0'::bpchar
I’ve scoured the Common and Global keywords documentation. The best candidate looked like %asset_linking_info%, but it only seems to provide linkID, link_type, link_value, lineage. Ditto JS api, no calls (getParents, getLineage, getAssetTree, getLinkId etc) seem to return these fields.
Is there any way to expose this data?