SPARQL は初めてです。このクエリを使用すると、アーネスト ヘミングウェイのbirthName を取得できます。
select distinct ?birthName
where {
?person a dbpedia-owl:Person .
?person dbpprop:birthName ?birthName .
FILTER (regex(?birthName, "Ernest Miller Hemingway"))
}
LIMIT 1
DBPedia を使用してアーネスト・ヘミングウェイのウィキペディアの要約/紹介とサムネイルを取得する方法はありますか?