query-bf5391dc184bec542382f8fc919ff216
Birthplaces of Chemistry Nobel Prize laureates (as a map)
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 bd: <http://www.bigdata.com/rdf#>
#defaultView:Map
SELECT DISTINCT ?person ?geo ?personLabel
WHERE {
?person wdt:P166 wd:Q44585 ; # Nobel Prize
wdt:P19 ?birthplace .
?birthplace wdt:P625 ?geo .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,de" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?birthplace")
v3("?geo"):::projected
v1("?person"):::projected
c6(["bd:serviceParam"]):::iri
c2(["wd:Q44585"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en,de"]):::literal
v1 --"wdt:P166"--> c2
v1 --"wdt:P19"--> v2
v2 --"wdt:P625"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end