Public
Like
wikidata
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
// get the death date for a person
@stevekrouse.wikidata(`SELECT ?person ?personLabel ?death_date WHERE {
?person rdfs:label "Henry Kissinger"@en;
wdt:P31 wd:Q5 . # Ensure the entity is a human
OPTIONAL {
?person wdt:P570 ?death_date . # Try to find a date of death
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}`)
Migrated from folder: Archive/wikidata
