query-139564bb6f42fc592dda80b73bca1aa2

rq turtle/ttl

Where were Novel Prize winners born? (Map) Wo wurden Nobelpreisträger geboren? Als Karte anzeigen!

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#>
#defaultView:Map
SELECT DISTINCT ?person ?coor ?personLabel
WHERE
{
  ?person wdt:P166 ?nobelpreis .
  ?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" .
  }
} 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 c10(["de"]):::literal c8(["bd:serviceParam"]):::iri c3(["wd:Q7191"]):::iri v2 --"wdt:P166"--> v3 v3 --"wdt:P279"--> c3 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; c8 --"wikibase:language"--> c10 end