query-a57417284774627ae0ae2e4f0a7eb994

rq turtle/ttl

Welche Ingenieur*innen haben einen Nobelpreis erhalten?

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#>
SELECT DISTINCT ?person ?coor ?personLabel
WHERE
{
  ?person wdt:P166 ?nobelpreis .
  ?person wdt:P106/wdt:P279* wd:Q81096 . 
  ?nobelpreis wdt:P279 wd:Q7191 .
  ?person wdt:P19 ?birthplace .
  OPTIONAL {?person wdt:P18 ?personImage}
  OPTIONAL {?birthplace wdt:P625 ?coor}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en" .}
} ORDER BY ASC(?personLabel)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?birthplace") v6("?coor"):::projected v3("?nobelpreis") v2("?person"):::projected v5("?personImage") v1("?personLabel"):::projected a1((" ")) c4(["wd:Q81096"]):::iri c10(["bd:serviceParam"]):::iri c12(["de,en"]):::literal c5(["wd:Q7191"]):::iri v2 --"wdt:P166"--> v3 v2 --"wdt:P106"--> a1 a1 --"wdt:P279"--> c4 v3 --"wdt:P279"--> c5 v2 --"wdt:P19"--> v4 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P18".-> v5 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v4 -."wdt:P625".-> v6 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end