query-651fb2739db9ce7f09c615b3ed152448
To my surprise the result is not empty. To narrow down the issue one can run the following query to find item-property combinations that are affected:
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
select ?item ?prop ?amount where {
?prop
wikibase:propertyType wikibase:Quantity ;
wikibase:claim ?p ;
wikibase:statementValue ?psv .
?item ?p [
?psv [
wikibase:quantityUnit [
a wikibase:Property ;
] ;
wikibase:quantityAmount ?amount ;
] ;
] .
} limit 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?amount"):::projected
v5("?item"):::projected
v2("?p")
v1("?prop"):::projected
v3("?psv")
a3((" "))
a2((" "))
a1((" "))
c6(["wikibase:Property"]):::iri
c2(["wikibase:Quantity"]):::iri
v1 --"wikibase:propertyType"--> c2
v1 --"wikibase:claim"--> v2
v1 --"wikibase:statementValue"--> v3
a1 --"a"--> c6
a2 --"wikibase:quantityUnit"--> a1
a2 --"wikibase:quantityAmount"--> v4
a3 -->v3--> a2
v5 -->v2--> a3