query-7e65dba470b8761976991116c02e8f4e
TODO
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX psv: <http://www.wikidata.org/prop/statement/value/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
select * where {
wd:Q106232369
rdfs:label ?label ;
wdt:P5061 ?symbol ;
p:P2370 [
ps:P2370 ?conversionFactor ;
psv:P2370 / wikibase:quantityUnit / rdfs:label ?coherentSIUnit ;
]
.
filter (lang(?label) = "en" && lang(?coherentSIUnit) = "en")
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?coherentSIUnit"):::projected
v4("?conversionFactor"):::projected
v1("?label"):::projected
v3("?symbol"):::projected
a1((" "))
a2((" "))
a3((" "))
c2(["wd:Q106232369"]):::iri
f0[["?label = 'en'?coherentSIUnit = 'en'"]]
f0 --> v1
f0 --> v2
c2 --"rdfs:label"--> v1
c2 --"p:direct/P5061"--> v3
a1 --"p:statement/P2370"--> v4
a1 --"p:statement/value/P2370"--> a2
a2 --"wikibase:quantityUnit"--> a3
a3 --"rdfs:label"--> v2
c2 --"p:P2370"--> a1