query-bf944e23a328b102ef8eb0d015e6b30c
VIAF - comuni olandesiAltri 55 casi scovati nei Paesi Bassi, il principio รจ esattamente lo stesso, direi (comune vs capoluogo):
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?comune ?comuneLabel ?capoluogo ?capoluogoLabel ?viaf
WHERE {
?comune wdt:P31 wd:Q2039348 .
?comune wdt:P214 ?viaf .
?capoluogo wdt:P131 ?comune .
?capoluogo wdt:P17 wd:Q55 .
?capoluogo wdt:P214 ?viaf .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],it,en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?capoluogo"):::projected
v1("?comune"):::projected
v2("?viaf"):::projected
c10(["#91;AUTO_LANGUAGE#93;,it,en"]):::literal
c8(["bd:serviceParam"]):::iri
c2(["wd:Q2039348"]):::iri
c6(["wd:Q55"]):::iri
v1 --"wdt:P31"--> c2
v1 --"wdt:P214"--> v2
v3 --"wdt:P131"--> v1
v3 --"wdt:P17"--> c6
v3 --"wdt:P214"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end