query-5bedd14dd28437af30ee889c7c56bde5

rq turtle/ttl

Date of birth and death of persons related to 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#>
#Date of birth and death of persons related to the NDRM
#defaultView:Table
SELECT DISTINCT ?person ?personLabel ?birthDate ?deathDate {
  ?person wdt:P31 wd:Q5. #P31 = instance of / wd:Q5 = human
  ?person wdt:P793 wd:Q623859. #P793 = significant event / wd:Q623859 = NDRM
  ?person wdt:P569 ?birthDate. #P569 = date of birth
  ?person wdt:P570 ?deathDate. #P570 = date of death
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],ko". }
} ORDER BY ASC(?personLabel)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?birthDate"):::projected v4("?deathDate"):::projected v2("?person"):::projected v1("?personLabel"):::projected c4(["wd:Q623859"]):::iri c8(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c10(["#91;AUTO_LANGUAGE#93;,ko"]):::literal v2 --"wdt:P31"--> c2 v2 --"wdt:P793"--> c4 v2 --"wdt:P569"--> v3 v2 --"wdt:P570"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end