本文介绍了为什么dbpedia-owl:wikiPageRedirects不返回完整的重定向链接集? (Sparql)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用以下查询:

select ?value where { <http://dbpedia.org/resource/Paris>  dbpedia-owl:wikiPageRedirects* ?value } 

为了检索 wikiPageRedirects 巴黎的财产。

in order to retrieve the wikiPageRedirects property of Paris.

基于巴黎有超过20个 重定向链接。为什么我只检索第一个?

Based on dbpedia Paris has more than 20 redirect links. Why am I only retrieving the first one?

推荐答案

您的方向错误。

select distinct *
where { 
  ?x dbpedia-owl:wikiPageRedirects <http://dbpedia.org/resource/Paris>
} 

这篇关于为什么dbpedia-owl:wikiPageRedirects不返回完整的重定向链接集? (Sparql)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 11:07