query-d1982eb22b5bf3dc72cccbd191bcb320
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT ?commonscat (COUNT(?item) AS ?count) WHERE {
?item wdt:P373 ?commonscat .
} GROUP BY ?commonscat
HAVING (?count > 2)
ORDER BY DESC(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?commonscat"):::projected
v4("?count")
v2("?item"):::projected
f0[["?count > '2^^xsd:integer'"]]
f0 --> v4
v2 --"wdt:P373"--> v3
bind2[/"count(?item)"/]
v2 --o bind2
bind2 --as--o v4