query-b056d8142305133e77a7ede3e087655c
Motivation in Wikidata: (Q47574)unit of measurement object. It will facilitate the creation of WL applications because developers won't have to maintain their own mapping of Wikidata IDs to WL units. There are currently over 5000 Quantity[magnitude, unit] native (Q15241057)Wolfram Language This property will allow representing a value of type "quantity" as a
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?unit ?unitLabel WHERE {
?unit wdt:P31/wdt:P279* wd:Q47574.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?unit"):::projected
a1((" "))
c5(["bd:serviceParam"]):::iri
c3(["wd:Q47574"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end