query-73ff29ac98606bb0d0853deb991e9c50

rq turtle/ttl

...Nobel Prize winners in chemistry!

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?p ?pLabel ?year
WHERE 
{
  ?p wdt:P106 wd:Q593644 . 
  ?p p:P166 ?statement . 
  ?statement ps:P166  wd:Q44585 .
  ?statement pq:P585  ?year .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en" . }
} ORDER BY ASC(?year)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?p"):::projected v3("?statement") v1("?year"):::projected c8(["bd:serviceParam"]):::iri c5(["wd:Q44585"]):::iri c10(["de,en"]):::literal c2(["wd:Q593644"]):::iri v2 --"p:direct/P106"--> c2 v2 --"p:P166"--> v3 v3 --"p:statement/P166"--> c5 v3 --"p:qualifier/P585"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end