如何在dbpedia查询棒球运动员的全名和出生日期

How to query dbpedia for baseball players full names and date of birth

我想查询此 ontology http://dbpedia.org/ontology/BaseballPlayer 每个玩家的全名和出生日期,但似乎我做错了什么。

这个 SPARQL 查询是否正确?不幸的是,它没有 return 任何结果。

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?uri 
WHERE 
{
        ?subject rdfs:label 'baseball player'@en .
        ?uri foaf:givenName ?uri

}
select * where {
  ?s a dbo:BaseballPlayer ;
     foaf:name ?name ;
     dbo:birthDate ?birthDate 
}

SPARQL results