Skip to content

Commit

Permalink
[#248] Fix script to move data to rm:action-history
Browse files Browse the repository at this point in the history
  • Loading branch information
blcham authored Jan 10, 2025
1 parent a334468 commit 2598e07
Showing 1 changed file with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
PREFIX rm: <http://onto.fel.cvut.cz/ontologies/record-manager/>

DELETE {
GRAPH <http://www.ontotext.com/explicit>{
?a ?p ?o .
}
DELETE {
?a ?p ?o .
}
INSERT {
GRAPH rm:action-history {
?a ?p ?o .
}
}
WHERE {
GRAPH <http://www.ontotext.com/explicit> {
?a ?p ?o .
?a a rm:action-history .
?a ?p ?o .
?a a rm:action-history .

MINUS {
GRAPH ?g {
?a ?p ?o .
}
}
}

0 comments on commit 2598e07

Please sign in to comment.