query-268f6183bdf90d911fe36fe5082971a8
item with the most properties of some kind
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT ?item (count(*) as ?count) WHERE {
?item wdt:P170 ?event .
}
Group by ?item
order by desc(?count)
limit 10
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?count")
v3("?event")
v2("?item"):::projected
v2 --"wdt:P170"--> v3
bind1[/"count(*)"/]
bind1 --as--o v4