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