query-b8d0359703b5a6b57f46e921ca69143c
Statistic
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?iucnStatusLabelDe (COUNT(?iucnStatusLabelDe) AS ?countOfIucnStatus) WHERE {
?item wdt:P141 ?iucnStatus .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "de" .
?iucnStatus rdfs:label ?iucnStatusLabelDe .
}
}
GROUP BY ?iucnStatusLabelDe
ORDER BY ASC(?countOfIucnStatus)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?countOfIucnStatus")
v2("?item")
v3("?iucnStatus")
v4("?iucnStatusLabelDe"):::projected
c5(["de"]):::literal
c3(["bd:serviceParam"]):::iri
v2 --"wdt:P141"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
v3 --"rdfs:label"--> v4
end
bind1[/"count(?iucnStatusLabelDe)"/]
v4 --o bind1
bind1 --as--o v5