I have trying to solve this task where I have to retrieve the list of actors for a given film name. I am new to both SPARQL and dbpedia.
After reading some tutorials, so far I have the following:
PREFIX dbpo: <http://dbpedia.org/ontology/>
SELECT ?actor_name
WHERE {
SERVICE <http://dbpedia.org/sparql> {
"Total Recall" dbpo:movieTitle ?movieName .
?movieName dbpo:actor ?actor.
?actor dbpo:actor_name ?actor_name.
}
}
Perhaps I am getting the names wrong.
On a general note, how should I go about finding specific service points from dbpedia, such as the one described in this question.