query-8246377df2c7fde8bd91c84ee2d8a4f0
Municipalities in Germany with number of population statements
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#>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX v: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
SELECT ?muni ?muniLabel ?instanceLabel (COUNT(?population) AS ?popCount) WHERE {
VALUES ?instance {wd:Q262166 wd:Q42744322} .
?muni p:P31 ?instanceBlock .
?instanceBlock v:P31 ?instance .
FILTER NOT EXISTS {?instanceBlock pq:P582 ?end} .
?muni wdt:P1082 ?population
SERVICE wikibase:label{bd:serviceParam wikibase:language "de"}
}
GROUP BY ?muni ?muniLabel ?instanceLabel
ORDER BY DESC(?popCount) ?muniLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?end")
v5("?instance")
v3("?instanceBlock")
v6("?muni"):::projected
v2("?muniLabel"):::projected
v8("?popCount")
v7("?population"):::projected
c8(["de"]):::literal
c6(["bd:serviceParam"]):::iri
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0v1 --"p:qualifier/P582"--> e0v2
e0v2("?end"):::projected
e0v1("?instanceBlock"):::projected
end
f0--EXISTS--> f0e0
f0 --> v3
f0 --> c1
f0 --> v4
v3 --"p:qualifier/P582"--> v4
bind1[/VALUES ?instance/]
bind1-->v5
bind10(["wd:Q262166"])
bind10 --> bind1
bind11(["wd:Q42744322"])
bind11 --> bind1
v6 --"p:P31"--> v3
v3 --"p:statement/P31"--> v5
v6 --"p:direct/P1082"--> v7
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end
bind3[/"count(?population)"/]
v7 --o bind3
bind3 --as--o v8