query-b9366c6cb005438603e1f30c9813df31

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?prop (COUNT(DISTINCT ?item) as ?ct)
{
  ?item ?wdt wd:Q191 .
  ?prop wikibase:directClaim ?wdt .
}
GROUP BY ?prop 
ORDER BY DESC(?ct)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?ct") v2("?item"):::projected v4("?prop"):::projected v3("?wdt") c1(["wd:Q191"]):::iri v2 -->v3--> c1 v4 --"wikibase:directClaim"--> v3 bind1[/"count(?item)"/] v2 --o bind1 bind1 --as--o v5