query-c03411bcd6ae9fa05c9b477f867b3120
Label woeWhat's going on here? Quick query yielding 11 results is submitted to the label service, which promptly times out.
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT ?thing (count(?thing) as ?count)
WHERE
{
?item wdt:P138 ?thing .
} group by ?thing having (?count >1000)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?count")
v2("?item")
v3("?thing"):::projected
f0[["?count > '1000^^xsd:integer'"]]
f0 --> v4
v2 --"wdt:P138"--> v3
bind2[/"count(?thing)"/]
v3 --o bind2
bind2 --as--o v4