query-0b44634b1792a69c413ca22d3bab51c0
Sister-city relations between cities that have millions of inhabitants
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#>
#defaultView:Graph
SELECT ?city ?cityLabel ?image ?cityB
WHERE {
?cityB wdt:P31 wd:Q1637706 .
?city wdt:P31 wd:Q1637706 ;
wdt:P190 ?cityB ;
wdt:P18 ?image
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?city"):::projected
v1("?cityB"):::projected
v3("?image"):::projected
c6(["bd:serviceParam"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c2(["wd:Q1637706"]):::iri
v1 --"wdt:P31"--> c2
v2 --"wdt:P31"--> c2
v2 --"wdt:P190"--> v1
v2 --"wdt:P18"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end