query-027fac995eebcb583946bde325e59160

rq turtle/ttl

Top botanists by number of number of taxons authored NB This times out

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?q ?qLabel (count(?s) AS ?taxa) WHERE {
?s p:P225 [pq:P405 ?q].
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
} GROUP BY ?q ?qLabel
ORDER BY DESC(?taxa)
LIMIT 10

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?q"):::projected v3("?s"):::projected v4("?taxa") a1((" ")) c4(["bd:serviceParam"]):::iri c6(["en"]):::literal a1 --"p:qualifier/P405"--> v2 v3 --"p:P225"--> a1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end bind1[/"count(?s)"/] v3 --o bind1 bind1 --as--o v4