I am trying to get life expectancy data for certain people. This is problematic for people who lived some time ago. A data set, for example. Pythagoras seems to have a so-called "empty node" for date of birth (P569) . But this empty node refers to another node earliest date (P1319) , which has data that I could work very well with.
But for some reason I cannot get this node. My first attempt looked like this , but somehow this leads to a completely empty result set:
SELECT DISTINCT ?person ?name ?dateofbirth ?earliestdateofbirth WHERE { ?person wdt:P31 wd:Q5.
Then I found another syntax that suggested using ?person wdt:P569/wdt:P1319 ?earliestdateofbirth as a kind of βshortcutβ syntax for explicit navigation, which I did above, but it also ends up with an empty result set .
SELECT DISTINCT ?person ?name ?dateofbirth ?earliestdateofbirth WHERE { ?person wdt:P31 wd:Q5.
So, how do I access the node referenced by the empty node (in my case specifically the earliest date of birth) in Wikidata?
source share