query-3f613762ba5acae447f3531731b1684c
Popular personHow to count persons with >25 sitelinks without timeout?
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT (COUNT(?item) AS ?cnt) WHERE {
?item wikibase:sitelinks ?count.
?item wdt:P31 wd:Q5.
FILTER (?count >25)
}
LIMIT 30000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?cnt")
v1("?count")
v2("?item"):::projected
c4(["wd:Q5"]):::iri
f0[["?count > '25^^xsd:integer'"]]
f0 --> v1
v2 --"wikibase:sitelinks"--> v1
v2 --"wdt:P31"--> c4
bind2[/"count(?item)"/]
v2 --o bind2
bind2 --as--o v3