query-eceb2e760bc5198c3991b2f8750679df

rq turtle/ttl

I can take each of the 465 results and count the number of items using each of them with

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT (count (DISTINCT ?item) as ?count) WHERE 
{
  ?item wdt:Propertyoneof465 ?something . 
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?count") v1("?item"):::projected v2("?something") v1 --"wdt:Propertyoneof465"--> v2 bind1[/"count(?item)"/] v1 --o bind1 bind1 --as--o v3