Q: I am trying to get list of all persons on wikipedia along with their age, birth_date, death_date(if present) and country.
I am using this dbpedia query which seems to return only 50,000 results which is definitely not true. A lot of entries are missing from here, for e.g. - Mick Jagger, etc.
SELECT ?person ?birthDate ?birthName ?occupation WHERE
{
?person a <http://dbpedia.org/ontology/Person> .
?person dbpedia-owl:birthDate ?birthDate .
?person dbpedia-owl:birthName ?birthName .
?person dbpedia-owl:occupation ?occupation
}
I also tried some of its variations -
select ?Person
where {
?Person a dbpedia-owl:Person
}
Can someone provide me some direction on how to achieve the task ? I am first time using DBPedia so It may be the case that I am missing out something trivial.
I need as much data as I can get about persons on earth. (may be millions of person with their age, country and birth_date
)and 50k is very less number
and it is also missing out some names which are mandatory
for me to get.