query-18af07925fd42c6589bc2e582822f461

rq turtle/ttl

How to get a list of humans, including some of their properties, who died on a particular date?. I still need a query that will return a list of humans whose date of death matches the input (date) variable. monthly deaths pages I already created some software to semi-automate the creation of the older for some years now and I only now realized that the Wikidata db could save me oceans of time.list of notable deathsI am so happy I found this page! I've been improving and adding to the Per human next properties should be returned: (including references)manner of deathitem (including references)cause of deathitem date of birthitem sitelinks itemDescription itemLabel itemPreferably I'd like to sort on surname but I have not found that data item property. This is how for I got myself (input death date is 25 Aug. 2001):

Use at

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX psv: <http://www.wikidata.org/prop/statement/value/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?itemDescription ?sitelinks where
{
  ?item wdt:P31 wd:Q5;
  wikibase:sitelinks ?sitelinks.
  ?item p:P570 ?statement_0.
  ?statement_0 psv:P570 ?statementValue_0.
  ?statementValue_0 wikibase:timePrecision ?precision_0.
  FILTER(?precision_0 >= 11 )
  ?statementValue_0 wikibase:timeValue ?P570_0.
  BIND("+2001-08-25T00:00:00Z"^^xsd:dateTime AS ?P570_0)
  SERVICE wikibase:label {bd:serviceParam wikibase:language "en"}
 }
ORDER BY DESC(?sitelinks)

Query found at