0

是否可以通过其属性之一的类来查询过滤器 SPARQL 查询?我有一个描述电影的本体,我希望展示所有在欧洲拍摄的电影。

当前的 SPARQL 查询如下:

PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX cinema: <http://example.com/ontologies/cinemachain#>
SELECT ?film ?location
    WHERE { 
        ?film rdf:type cinema:Film .
        ?film cinema:wasFilmedAt ?location .
        FILTER(?location rdfs:subClassOf cinema:Europe) .

}

where 子句的前两行给了我所有电影及其位置的列表。如何使用过滤器向我返回位置是cinema:Europe 子类的结果?

4

1 回答 1

2

在这个特定的本体中,cinema:Europe 是cinema:Location 的子类。这样我们就可以轻松地按大陆识别特定位置。对于这个过滤器,我想找到所有位置是欧洲成员的电影。你知道我如何使用 SPARQL 做到这一点吗?

好的,命名约定有点不寻常,但我们可以使用它。您只需要要求?location的类型是 Europe 的子类(包括 Europe 本身):

select ?film ?location where {
  ?film rdf:type cinema:Film ;
        cinema:wasFilmedAt ?location .
  ?location rdf:type/rdfs:subClassOf* cinema:Europe .
}
于 2015-04-15T20:54:23.820 回答