query-6715aed29afffac0e9acdaf4830bf000
Jura1
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
SELECT ?unit (COUNT(?unit) AS ?count)
WHERE
{
?value wikibase:quantityUnit ?unit .
?unit a wikibase:Property.
}
GROUP BY ?unit
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?count")
v2("?unit"):::projected
v1("?value")
c3(["wikibase:Property"]):::iri
v1 --"wikibase:quantityUnit"--> v2
v2 --"a"--> c3
bind1[/"count(?unit)"/]
v2 --o bind1
bind1 --as--o v3