Skip to content

Commit

Permalink
Create delete.rq
Browse files Browse the repository at this point in the history
  • Loading branch information
jolietjakeblues authored Dec 7, 2023
1 parent 35c3550 commit 8443e17
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions PoolParty/delete.rq
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
PREFIX skos:<http://www.w3.org/2004/02/skos/core#>
PREFIX ied:<https://data.indischherinneringscentrum.nl/schema/>

#DELETE {
# GRAPH <https://data.indischherinneringscentrum.nl/ied/thesaurus> {
# ?concept ied:imageURL ?imageUrl .
# }
#}
CONSTRUCT {
?concept ied:imageURL ?imageUrls .

# INSERT {
# GRAPH <https://data.indischherinneringscentrum.nl/ied/thesaurus> {
# ?concept ied:imageURL ?imageUrls .
#}
}
WHERE {
?concept ied:imageURL ?imageUrl .
BIND(str(?imageUrl) AS ?imageUrls)

}

0 comments on commit 8443e17

Please sign in to comment.