query-4731dcb22529c388cb531888a907517b

rq turtle/ttl

أكبر مدن العالم Largest cities of the world Ciutats més grans del món Největší města světa Største byer i verden Größte Städte der Welt Largest cities of the world Largest cities of the world Largest cities of the world Largest cities of the world Largest cities of the world Plus grandes villes du monde הערים הגדולות בעולם Largest cities of the world Largest cities of the world Città più grandi del mondo 世界最大の都市 세계 최대 도시들 찾아보기 Largest cities of the world Largest cities of the world Largest cities of the world Grootste steden in de wereld Największe miasta świata Largest cities of the world Largest cities of the world Крупнейшие города мира Largest cities of the world Största städer i världen Largest cities of the world Dünyanın en kalabalık şehirleri Найбільші міста світу Largest cities of the world 世界上最大的城市

Use at

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:BubbleChart
SELECT ?cityLabel ?population ?gps
WHERE {
   {
  SELECT DISTINCT *
  WHERE {
    ?city wdt:P31/wdt:P279* wd:Q515 .
    ?city wdt:P1082 ?population .
    ?city wdt:P625 ?gps .
  }
  ORDER BY DESC(?population)
  LIMIT 100
}  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en" . }
}
ORDER BY DESC(?population)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?city") v3("?gps"):::projected v1("?population"):::projected a1((" ")) c7(["bd:serviceParam"]):::iri c3(["wd:Q515"]):::iri c9(["#91;AUTO_LANGUAGE#93;,mul,en"]):::literal v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 v2 --"wdt:P1082"--> v1 v2 --"wdt:P625"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end