2

以下 Wikidata 查询无法正常工作:

# WikiData SPARQL Query
#
# Wolfgang Fahl 2018-01-06
#
# get father of queen victoria
SELECT ?queenVictoria ?queenVictoriaLabel ?fatherProperty ?fatherPropertyLabel ?father ?fatherLabel
WHERE {
#  
# father
# https://www.wikidata.org/wiki/Property:P42
# Queen Victoria
# https://www.wikidata.org/wiki/Q9439
  BIND (wdt:P22 AS ?fatherProperty).
  BIND (wd:Q9439 AS ?queenVictoria).
  ?queenVictoria ?fatherProperty ?father.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

试试看!

结果是

queenVictoria queenVictoriaLabel fatherProperty fatherPropertyLabel                     father.      fatherLabel   
wd:Q9439      Queen Victoria     wdt:P22        http://www.wikidata.org/prop/direct/P22 wd:Q157009   Prince Edward Augustus, Duke of Kent and Strathearn

我期待标签是维多利亚女王,父亲和“爱德华奥古斯都王子”。

我的查询有什么问题?或者这是一个错误?

4

1 回答 1

3

http://www.wikidata.org/prop/direct/P22返回而不是返回的原因father是 Wikidata 真实谓词没有标签(try DESCRIBE wdt:P22)。只有正确的属性有标签(尝试DESCRIBE wd:P22)。

Wikidata标签服务可以解决这种情况,但它不能

SERVICE wikibase:label只为 wd: 命名空间中的实体提供标签。

因此,试试这个查询:

SELECT ?queenLabel ?realpropertyLabel ?fatherLabel
WHERE {
  VALUES (?queen) {(wd:Q9439)}
  VALUES (?property) {(wdt:P22)}
  ?queen ?property ?father .
  ?realproperty wikibase:directClaim ?property
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
} 
于 2018-01-19T12:49:01.493 回答