query-d5b9a89077c69c43ccdce381dd0eaf48
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX psn: <http://www.wikidata.org/prop/statement/value-normalized/>
PREFIX p: <http://www.wikidata.org/prop/>
SELECT ?item ?height1 ?height2 {
?item p:P2044 [ psn:P2044/wikibase:quantityAmount ?height1; psn:P2044/wikibase:quantityAmount ?height2 ] .
FILTER( ?height1 - ?height2 > 500 ) .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?height1"):::projected
v2("?height2"):::projected
v3("?item"):::projected
a1((" "))
a2((" "))
a3((" "))
f0[["?height1 - ?height2 > '500^^xsd:integer'"]]
f0 --> v1
f0 --> v2
a1 --"p:statement/value-normalized/P2044"--> a2
a2 --"wikibase:quantityAmount"--> v1
a1 --"p:statement/value-normalized/P2044"--> a3
a3 --"wikibase:quantityAmount"--> v2
v3 --"p:P2044"--> a1