部分原因是,有一個DBpedia中資源稱爲
HTTP:/dbpedia.org/resource/Member_states_of_the_United_Nations
但你真正想要的,因爲它的dct:subject屬性的值,是類別,
http://dbpedia.org/page/Category:Member_states_of_the_United_Nations
舉例來說,你會碰到一些成員國如查詢的國家的名單:
SPARQL results
但是,巴黎不是一個會員。這是法國的一個城市,是一個成員。您可以檢查東西是否與成員問查詢,如:
:
ask {
dbr:France a dbo:Country ;
dct:subject dbc:Member_states_of_the_United_Nations
}
SPARQL results (true)
你可以在那些部件相類似的查詢國家獲得居住區的列表
select ?city ?country {
?city a dbo:PopulatedPlace ;
dbo:country ?country .
?country a dbo:Country ;
dct:subject dbc:Member_states_of_the_United_Nations .
}
SPARQL results (limited to 100)
,您可以將其修改爲請求查詢,該查詢檢查具有特定名稱的城市。例如: -
ask {
?city rdfs:label "Paris"@en ;
a dbo:PopulatedPlace ;
dbo:country ?country .
?country a dbo:Country ;
dct:subject dbc:Member_states_of_the_United_Nations .
}
SPARQL results (true)