Skip to content

Commit

Permalink
added birth and death dates to author timeline
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartyeates committed Jul 24, 2024
1 parent 9eb28f3 commit 204dc6b
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion scholia/app/templates/author_timeline.sparql
Original file line number Diff line number Diff line change
Expand Up @@ -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) .
}

}

0 comments on commit 204dc6b

Please sign in to comment.