query-ae7687c538532d01a1b911a99d0dc748

rq turtle/ttl

instance of (P31) > 500000

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?o (count(?o) as ?count) WHERE {
  ?id wdt:P31 ?o.
}
group by ?o 
having (?count > 500000)
order by desc(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?count") v2("?id") v3("?o"):::projected f0[["?count > '500000^^xsd:integer'"]] f0 --> v4 v2 --"wdt:P31"--> v3 bind2[/"count(?o)"/] v3 --o bind2 bind2 --as--o v4