Skip to content

Instantly share code, notes, and snippets.

@lisongx
Last active December 5, 2017 02:25
Show Gist options
  • Save lisongx/aff1adbe1909611e2f13a458c3b1845f to your computer and use it in GitHub Desktop.
Save lisongx/aff1adbe1909611e2f13a458c3b1845f to your computer and use it in GitHub Desktop.
who's dead?
SELECT ?entity ?entityLabel (YEAR(?date) as ?year)
WHERE
{
BIND(MONTH(NOW()) AS ?nowMonth)
BIND(DAY(NOW()) AS ?nowDay)
?entity wdt:P106+ wd:Q639669 .
?entity wdt:P570 ?date .
FILTER (MONTH(?date) = ?nowMonth && DAY(?date) = ?nowDay)
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
LIMIT 100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment