Wikidata查询结果不一致

时间:2018-12-11 14:08:20

标签: sparql wikidata wikidata-api

在Wikidata中,俄罗斯被标记为“主权国家”(Q3624078)实例和“国家”(https://www.wikidata.org/wiki/Q159)实例。

状态为“主权国家”的https://query.wikidata.org/的SPARQL请求返回俄罗斯:

SELECT DISTINCT ?country ?countryLabel 
WHERE
{
?country wdt:P31 wd:Q3624078 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?countryLabel

但是带有“国家/地区”标签的SPARQL请求不会:

SELECT DISTINCT ?country ?countryLabel 
WHERE
{
?country wdt:P31 wd:Q6256 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?countryLabel

为什么要这么做?

0 个答案:

没有答案