query-42f99f288f2b4c4db876140e6ccb8fe7

rq turtle/ttl

Number of uses

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
SELECT ?quantityProperty (COUNT(?item) AS ?cnt) {
  ?quantityProperty wikibase:propertyType wikibase:Quantity; wikibase:claim ?claim; wikibase:statementValue ?statementValue .
  ?item ?claim ?statement . 
  #?statment ?statementValue [ wikibase:quantityAmount ?amount; wikibase:quantityUnit ?unit; wikibase:quantityUpperBound ?upperBound; wikibase:quantityLowerBound ?lowerBound ] .
} GROUP BY ?quantityProperty ORDER BY DESC(?cnt)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?claim") v7("?cnt") v5("?item"):::projected v2("?quantityProperty"):::projected v6("?statement") v4("?statementValue") c2(["wikibase:Quantity"]):::iri v2 --"wikibase:propertyType"--> c2 v2 --"wikibase:claim"--> v3 v2 --"wikibase:statementValue"--> v4 v5 -->v3--> v6 bind1[/"count(?item)"/] v5 --o bind1 bind1 --as--o v7