query-48e7be7947a84a6ceae62e6efef73063
Where are people buried?
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#>
SELECT ?personLabel ?coords ?place_of_burialLabel
WHERE { ?person wdt:P485 wd:Q6801297; #people who have archives at McGill University Archives
wdt:P119 ?place_of_burial. #people who have a place of burial
?place_of_burial wdt:P625 ?coords. #place of burial coordinates
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("?coords"):::projected
v1("?person")
v2("?place_of_burial")
c2(["wd:Q6801297"]):::iri
c6(["bd:serviceParam"]):::iri
c8(["en"]):::literal
v1 --"wdt:P485"--> c2
v1 --"wdt:P119"--> v2
v2 --"wdt:P625"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end