query-1a23f450f008041cdc32b52c7e43efe3
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT DISTINCT ?item (COUNT(?creat) AS ?count) WHERE {
?item wdt:P127 ?creat .
}
GROUP BY ?item order by desc(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?count")
v3("?creat"):::projected
v2("?item"):::projected
v2 --"wdt:P127"--> v3
bind1[/"count(?creat)"/]
v3 --o bind1
bind1 --as--o v4