query-1348ae63d315af70bae0bf1496fbc754
Ranks
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 DISTINCT ?taxonRankLabel (COUNT(?taxonRankLabel) AS ?countOfTaxonRank) WHERE {
?item wdt:P105 ?taxonRank .
?item (wdt:P171)* ?higherParent .
?higherParent wdt:P944 wd:Q14920640.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}
GROUP BY ?taxonRankLabel
ORDER BY DESC(?countOfTaxonRank)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v6("?countOfTaxonRank")
v4("?higherParent")
v2("?item")
v3("?taxonRank")
v5("?taxonRankLabel"):::projected
c6(["bd:serviceParam"]):::iri
c8(["#91;AUTO_LANGUAGE#93;"]):::literal
c4(["wd:Q14920640"]):::iri
v2 --"wdt:P105"--> v3
v2 --"wdt:P171"--> v4
v4 --"wdt:P944"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end
bind1[/"count(?taxonRankLabel)"/]
v5 --o bind1
bind1 --as--o v6