Why is dbpedia-owl:wikiPageRedirects not returning the full set of redirect links? (Sparql)

后端 未结 2 1481
夕颜
夕颜 2020-11-28 17:11

I am using the following query :

select ?value where {   dbpedia-owl:wikiPageRedirects* ?value } 

2条回答
  •  情深已故
    2020-11-28 17:22

    Your direction was wrong.

    select distinct *
    where { 
      ?x dbpedia-owl:wikiPageRedirects 
    } 
    

提交回复
热议问题