query-3530c4acc4245166e4177ff08b0b8ef4

rq turtle/ttl

histogram of use

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT ?count1 (Count(?item) as ?count) (min(?item) as ?example) WHERE {
  SELECT ?item (count(*) as ?count1) WHERE {
    ?item wdt:P195 ?value .
  } group by ?item
} group by ?count1
order by ?count1

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?count") v4("?count1"):::projected v5("?example") v2("?item"):::projected v3("?value") v2 --"wdt:P195"--> v3 bind1[/"count(*)"/] bind1 --as--o v4 bind4[/"count(?item)"/] v2 --o bind4 bind4 --as--o v4 bind5[/"min(?item)"/] v2 --o bind5 bind5 --as--o v5