From 204dc6bf7c264f45f8cfbcec221b99efa97ca2e5 Mon Sep 17 00:00:00 2001 From: stuart yeates Date: Wed, 24 Jul 2024 09:50:06 +0000 Subject: [PATCH] added birth and death dates to author timeline --- scholia/app/templates/author_timeline.sparql | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/scholia/app/templates/author_timeline.sparql b/scholia/app/templates/author_timeline.sparql index cd6261643..673004bd0 100644 --- a/scholia/app/templates/author_timeline.sparql +++ b/scholia/app/templates/author_timeline.sparql @@ -94,5 +94,15 @@ WHERE { BIND(CONCAT("🏆 ",?award_label) AS ?label) ?award_statement pq:P585 ?beginning . } - + UNION + { + target: wdt:P569 ?beginning . + BIND(CONCAT("👶 born ") AS ?label) . + } + UNION + { + target: wdt:P570 ?beginning . + BIND(CONCAT("💀 died") AS ?label) . + } + }