query-e02c54218274c6a25abeb203ec4c4e59

rq turtle/ttl

Modern country where Mary Magdaline died SELECT ?placeOfDeath ?placeOfDeathLabel ?country ?countryLabel WHERE { wd:Q63070 wdt:P20 ?placeOfDeath. ?placeOfDeath wdt:P17 ?country. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }

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#>
#Modern country where Mary Magdaline died
SELECT ?placeOfDeath ?placeOfDeathLabel ?country ?countryLabel
WHERE {
  wd:Q63070 wdt:P20 ?placeOfDeath.
  ?placeOfDeath wdt:P17 ?country.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?country"):::projected v1("?placeOfDeath"):::projected c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal c1(["wd:Q63070"]):::iri c1 --"wdt:P20"--> v1 v1 --"wdt:P17"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end