我使用以下查询来获取与rdf:type
项wikiPageDisambiguates
相关联的所有Federer
。但查询仅返回dbpedia-owl中的类型。但是,当我打开URI时,还有其他rdf:type
关联,例如:http://dbpedia.org/class/yago/SwissMaleTennisPlayers等。但在查询结果中,我没有获得所有rdf:type
。
查询:
PREFIX yago: <http://dbpedia.org/class/yago/>
select *
where {
?LandingURI rdfs:label ?term.
?LandingURI <http://dbpedia.org/ontology/wikiPageDisambiguates> ?disambiguates .
?disambiguates rdf:type ?category .
filter((?term ="Federer (disambiguation)"@en))
}