SPARQL 查询删除资源中的所有空白节点
SPARQL Query to delete all blank nodes with in a Resource
我正在编写一个 SPARQL 查询,它应该删除该资源中的所有三元组。
prefix oslc: <http://open-services.net/ns/core#>
prefix example: <http://rdf.company.com/ns/something/net#>
prefix xsd: <http://www.w3.org/2001/XMLSchema#>
prefix dcterms: <http://purl.org/dc/terms/>
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
example:Resource2
a oslc:ResourceShape ;
oslc:describes example:Resource2 ;
oslc:property [ a oslc:Property ;
oslc:isMemberProperty true ;
oslc:name "pgn" ;
oslc:occurs oslc:Zero-or-one ;
oslc:valueType xsd:integer ] ;
dcterms:title "Resource2"^^rdf:XMLLiteral .
我试过:
DELETE
{ ?s ?p ?o }
WHERE
{
?s ?p ?o .
FILTER ( ?s IN ( <http://rdf.company.com/ns/something/net#Resource2>))
}
但是,id并没有删除其中的空白节点:
[ a oslc:Property ;
oslc:isMemberProperty true ;
oslc:name "pgn" ;
oslc:occurs oslc:Zero-or-one ;
oslc:valueType xsd:integer ]
这很明显,因为过滤器指定了一个特定的主题,而空白节点没有那个主题。
知道如何删除空白节点吗?
希望您没有嵌套的空白节点。试试这个:
PREFIX example: <http://rdf.company.com/ns/something/net#>
DELETE {
?s ?p ?o .
?o ?p1 ?o1 .
}
WHERE {
VALUES (?s) { (example:Resource2) }
?s ?p ?o .
OPTIONAL {
?o ?p1 ?o1 .
FILTER (isBlank(?o))
}
}
相关问题:.
我正在编写一个 SPARQL 查询,它应该删除该资源中的所有三元组。
prefix oslc: <http://open-services.net/ns/core#>
prefix example: <http://rdf.company.com/ns/something/net#>
prefix xsd: <http://www.w3.org/2001/XMLSchema#>
prefix dcterms: <http://purl.org/dc/terms/>
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
example:Resource2
a oslc:ResourceShape ;
oslc:describes example:Resource2 ;
oslc:property [ a oslc:Property ;
oslc:isMemberProperty true ;
oslc:name "pgn" ;
oslc:occurs oslc:Zero-or-one ;
oslc:valueType xsd:integer ] ;
dcterms:title "Resource2"^^rdf:XMLLiteral .
我试过:
DELETE
{ ?s ?p ?o }
WHERE
{
?s ?p ?o .
FILTER ( ?s IN ( <http://rdf.company.com/ns/something/net#Resource2>))
}
但是,id并没有删除其中的空白节点:
[ a oslc:Property ;
oslc:isMemberProperty true ;
oslc:name "pgn" ;
oslc:occurs oslc:Zero-or-one ;
oslc:valueType xsd:integer ]
这很明显,因为过滤器指定了一个特定的主题,而空白节点没有那个主题。
知道如何删除空白节点吗?
希望您没有嵌套的空白节点。试试这个:
PREFIX example: <http://rdf.company.com/ns/something/net#>
DELETE {
?s ?p ?o .
?o ?p1 ?o1 .
}
WHERE {
VALUES (?s) { (example:Resource2) }
?s ?p ?o .
OPTIONAL {
?o ?p1 ?o1 .
FILTER (isBlank(?o))
}
}
相关问题: