query-0d355cad33287947d2e0039e87d509b6
SPARQL - Wartung Wikidata, Anzahl der Items direkt in einem BundeslandDie entspricht der Arbeitsliste Benutzer:Holger1959/BW-1 Spezielles zum Weitersortieren: noch direkt „in
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 ?bundesland ?bundeslandLabel ?anz WHERE {
{
SELECT ?bundesland (COUNT(?item) as ?anz)
WHERE
{
?bundesland wdt:P17 wd:Q183.
?bundesland wdt:P31 wd:Q1221156.
?item wdt:P17 wd:Q183;
wdt:P131 ?bundesland .
}
GROUP BY ?bundesland
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de". }
} ORDER BY DESC(?anz)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?anz"):::projected
v2("?bundesland"):::projected
v3("?item")
c9(["#91;AUTO_LANGUAGE#93;,de"]):::literal
c7(["bd:serviceParam"]):::iri
c4(["wd:Q1221156"]):::iri
c2(["wd:Q183"]):::iri
v2 --"wdt:P17"--> c2
v2 --"wdt:P31"--> c4
v3 --"wdt:P17"--> c2
v3 --"wdt:P131"--> v2
bind1[/"count(?item)"/]
v3 --o bind1
bind1 --as--o v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end