query-40192050434d07a2217f83acf557891e
TODO
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 DISTINCT ?cityLabel ?countryLabel ?population ?namedLabel ?officeLabel
WHERE
{
?city wdt:P31/wdt:P279* wd:Q515 .
?city wdt:P138 ?named .
?city wdt:P1082 ?population .
?city wdt:P17 ?country .
?named wdt:P39 ?office .
?office wdt:P31 wd:Q294414
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY DESC(?population)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?city")
v4("?country")
v3("?named")
v5("?office")
v1("?population"):::projected
a1((" "))
c10(["bd:serviceParam"]):::iri
c3(["wd:Q515"]):::iri
c8(["wd:Q294414"]):::iri
c12(["en"]):::literal
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v2 --"wdt:P138"--> v3
v2 --"wdt:P1082"--> v1
v2 --"wdt:P17"--> v4
v3 --"wdt:P39"--> v5
v5 --"wdt:P31"--> c8
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end