Skip to content

Commit

Permalink
Merge pull request #249 from kbss-cvut/248-action-history-migration-s…
Browse files Browse the repository at this point in the history
…cript

Action history context migration script
  • Loading branch information
blcham authored Jan 10, 2025
2 parents 7cd90de + 2598e07 commit 6b6fba6
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
PREFIX rm: <http://onto.fel.cvut.cz/ontologies/record-manager/>

DELETE {
?a ?p ?o .
}
INSERT {
GRAPH rm:action-history {
?a ?p ?o .
}
}
WHERE {
?a ?p ?o .
?a a rm:action-history .

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

0 comments on commit 6b6fba6

Please sign in to comment.