blob: 35439e5beffaa1373455c830f3686bf6eb2a4092 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
PREFIX : <http://example.org/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
DELETE
{
GRAPH <http://example.org/g1> { ?s ?p ?o }
}
WHERE
{
GRAPH <http://example.org/g1> { :a foaf:knows ?s .
?s ?p ?o }
}
|