query-dec3e982e9f4ac8e67561bdf955a2804

rq turtle/ttl

PalotabarĂ¡t

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#>
SELECT ?item ?itemLabel (MAX(?population) AS ?pop)
WHERE {
  ?item wdt:P31/wdt:P279* wd:Q14502790 .
  FILTER (?item != wd:Q1781) .
  ?item wdt:P1082 ?population .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "hu". }
}
GROUP BY ?item ?itemLabel
ORDER BY DESC(?pop)
LIMIT 50

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v4("?pop") v3("?population"):::projected a1((" ")) c7(["bd:serviceParam"]):::iri c4(["wd:Q14502790"]):::iri c9(["hu"]):::literal f0[["?item != 'wd:Q1781'"]] f0 --> v2 v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c4 v2 --"wdt:P1082"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end bind2[/"max(?population)"/] v3 --o bind2 bind2 --as--o v4