query-07d66197f41d8b2a503232c2696e17c7
Amount of values TODO
Use at
- https://query.wikidata.org/sparql
PREFIX p: <http://www.wikidata.org/prop/>
SELECT ?item (COUNT(*) AS ?elo_cnt) WHERE {
?item p:P1087 [] .
} GROUP BY ?item HAVING(?elo_cnt<5)
Query found at
- https://www.wikidata.org/wiki/User:Infovarius/Queries
- https://www.wikidata.org/wiki/Wikidata:Request_a_query/Archive/2018/08
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?elo_cnt")
v2("?item"):::projected
a1((" "))
f0[["?elo_cnt < '5^^xsd:integer'"]]
f0 --> v3
v2 --"p:P1087"--> a1
bind2[/"count(*)"/]
bind2 --as--o v3