如何使用 ARC2 获取“过滤器不存在”查询



>我有一个基于ARC2的RDF存储设置,并填充了一些数据。以下查询返回预期结果(类型为 vcard:Individualfoaf:Person 的事物的所有 URI),当我在没有FILTER NOT EXISTS部分的情况下运行它时:

PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX vcard: <http://www.w3.org/2001/vcard-rdf/3.0#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX app: <http://example.com#>
SELECT ?person
WHERE {
  ?person rdf:type ?type .
  FILTER (?type = vcard:Individual || ?type = foaf:Person)
  FILTER NOT EXISTS {
    ?person app:id ?id
  }
}

当我尝试通过运行完整查询来排除那些具有 app:id 属性的内容时,它失败并显示以下消息:

Incomplete FILTER in ARC2_SPARQLPlusParser
Incomplete or invalid Group Graph pattern. Could not handle &quot;        FILTER NOT EXISTS {   &quot; in ARC2_SPARQLPlusParser

在 sparql.org 的查询验证器中测试查询时,没有问题。我的查询是否有问题,或者这是 ARC2 的缺点?

你能想到一个替代查询,我可以尝试使用 ARC2 来获得所需的结果吗?

ARC2 不支持 SPARQL 1.1,因此,您必须使用通用的 OPTIONAL-FILTER(!BOUND()) 模式:

PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX vcard: <http://www.w3.org/2001/vcard-rdf/3.0#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX app: <http://example.com#>
SELECT ?person
WHERE {
  ?person rdf:type ?type .
  FILTER (?type = vcard:Individual || ?type = foaf:Person)
  OPTIONAL {
    ?person app:id ?id
  }
  FILTER ( !BOUND(?id) ) 
}

相关内容

  • 没有找到相关文章