If you have applied those updates through the usual transaction
mechanism against a graph that contains the user name (e.g.
<urn:x-evn-master:geo:Administrator> then the change history (TCH graph)
will contain a triple
<urn:x-evn-master:geo.tch> teamwork:lastChange ?change
where ?change has a triple
?change dcterms:created ?timeStamp
So this may get you what you're after:
SELECT ?timeStamp
WHERE {
BIND (teamwork:currentTeamGraph() AS ?teamGraph)
GRAPH ?teamGraph {
?teamGraph teamwork:lastChange/dcterms:created ?timeStamp .
}
}
Holger
On 7/05/2020 18:30, MSV wrote:
Hi,
I update a graph container on weekly basis using swp.
Is there a property that can tell me when was the last update happened to that
graph?
--
You received this message because you are subscribed to the Google Groups "TopBraid
Suite Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/topbraid-users/0f479c4a-8a8b-39f4-cf44-851011012515%40topquadrant.com.