query-a72cc360472e336976ad72c631aad2bc

rq turtle/ttl

Show the residence of key figures who participated in the NDRM

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#>
#Show the residence of key figures who participated in the NDRM
#defaultView:Map
SELECT ?item ?itemLabel ?residence ?residenceLabel ?geolocation {
  ?item wdt:P31 wd:Q5. #P31 = instance of / wd:Q5 = human
  ?item wdt:P485 wd:Q115296901. #P485 = archives at / wd:Q115296901 = NDRM archive
  ?item wdt:P551 ?residence. #P551 = residence
  ?residence wdt:P625 ?geolocation. #P625 = coordinate location
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?geolocation"):::projected v1("?item"):::projected v2("?residence"):::projected c8(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c4(["wd:Q115296901"]):::iri c10(["en"]):::literal v1 --"wdt:P31"--> c2 v1 --"wdt:P485"--> c4 v1 --"wdt:P551"--> v2 v2 --"wdt:P625"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end