Skip to content

Commit

Permalink
[#250] Add migration script to move entity from default to Person con…
Browse files Browse the repository at this point in the history
…text
  • Loading branch information
blcham committed Jan 10, 2025
1 parent 44c2ab4 commit 13bca4b
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 foaf: <<http://xmlns.com/foaf/0.1/>
DELETE {
?a ?p ?o .
}
INSERT {
GRAPH foaf:Person {
?a ?p ?o .
}
}
WHERE {
?a ?p ?o .
?a a foaf:Person .
MINUS {
GRAPH ?g {
?a ?p ?o .
}
}
}

0 comments on commit 13bca4b

Please sign in to comment.