query-d2b8e87a1614b54ced15b306258332a9
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?prop ?propLabel ?st {
?prop a wikibase:Property; wikibase:statements ?st .
FILTER( ?st <= 3 ) .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" } .
} ORDER BY DESC(?st)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?prop"):::projected
v1("?st"):::projected
c6(["bd:serviceParam"]):::iri
c3(["wikibase:Property"]):::iri
c8(["en"]):::literal
f0[["?st <= '3^^xsd:integer'"]]
f0 --> v1
v2 --"a"--> c3
v2 --"wikibase:statements"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end