query-afa7472f42b628dd03d783b50372b930
title:List of researchers with affiliation to institutions in Switzerland or Liechtenstein SELECT DISTINCT ?person WHERE { ?person wdt:P108 [ wdt:P17 ?country ] . VALUES ?country { wd:Q39 wd:Q347 } . }
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
#title:List of researchers with affiliation to institutions in Switzerland or Liechtenstein
SELECT DISTINCT ?person
WHERE {
?person wdt:P108 [ wdt:P17 ?country ] .
VALUES ?country { wd:Q39 wd:Q347 } .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?country")
v2("?person"):::projected
a1((" "))
a1 --"wdt:P17"--> v3
v2 --"wdt:P108"--> a1
bind0[/VALUES ?country/]
bind0-->v3
bind00(["wd:Q39"])
bind00 --> bind0
bind01(["wd:Q347"])
bind01 --> bind0