query-bdc7f1a7605b7309a6de637a3694940f
Counties of Lithuania
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#>
#title:Counties of Lithuania
#defaultView:Table
SELECT ?muni ?muniLabel ?capitalLabel ?area ?population WHERE {
?muni wdt:P31 wd:Q273789;
wdt:P36 ?capital;
wdt:P2046 ?area;
wdt:P1082 ?population.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC (?population)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?area"):::projected
v3("?capital")
v2("?muni"):::projected
v1("?population"):::projected
c7(["bd:serviceParam"]):::iri
c2(["wd:Q273789"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P31"--> c2
v2 --"wdt:P36"--> v3
v2 --"wdt:P2046"--> v4
v2 --"wdt:P1082"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end