query-38085639bce58f3e218cbfb158888e48

rq turtle/ttl

Showcase

Use at

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#>
#Minerals and their commons colors
#defaultView:Graph
SELECT DISTINCT ?mineral ?mineralLabel ?rgb ?color ?colorLabel
WHERE
{
  ?mineral wdt:P279* wd:Q7946 ;
           wdt:P462 ?color .
  ?color wdt:P465 ?rgb .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?color"):::projected v1("?mineral"):::projected v3("?rgb"):::projected c6(["bd:serviceParam"]):::iri c8(["en"]):::literal c2(["wd:Q7946"]):::iri v1 --"wdt:P279"--> c2 v1 --"wdt:P462"--> v2 v2 --"wdt:P465"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end