gpt4 book ai didi

sparql - 在联合查询中使用维基数据标签服务

转载 作者:行者123 更新时间:2023-12-03 20:29:24 24 4
gpt4 key购买 nike

我想知道是否可以在联合查询中使用 Wikidata 标签服务。例如,以下查询

# Query from a local SPARQL enpoint

select ?item ?itemLabel
where {
SERVICE <https://query.wikidata.org/sparql> {
?item wdt:P31 wd:Q146.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

}

返回空 ?itemLabel s。我怎样才能得到 ?itemLabel在我的结果集中?

最佳答案

您也可以使用 manual mode ,就您而言,它只是多一行:

PREFIX       wdt:  <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT * {
SERVICE <https://query.wikidata.org/sparql> {
?item wdt:P31 wd:Q146
SERVICE wikibase:label { bd:serviceParam wikibase:language "it". ?item rdfs:label ?label }
}
}

Try on FactForge

关于sparql - 在联合查询中使用维基数据标签服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53012303/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com