I want to extract the release date of some specific movies. The sparql query, I am using is: Not even one query is giving me any answer Is there something wrong becoz date is returned in some format? Could you tell me any thing wat is going wrong

SELECT ?star
WHERE { 
<http://dbpedia.org/page/Chances_Are_%28film%29> dbpedia-owl:releaseDate ?star
}


SELECT ?star
WHERE { 
<http://dbpedia.org/page/Cages> dbpprop:releaseDate ?star
}



SELECT ?star
WHERE { 
<http://dbpedia.org/page/Los_que_no_deben_nacer> dbpprop:released ?star
}
link|improve this question

40% accept rate
why don't you accept any answers to your questions? This behaviour discourages people to help you... – glglgl Dec 21 '11 at 8:57
feedback

1 Answer

up vote 2 down vote accepted

The URI you are using for the Movie resource is wrong - you should replace "page" with "resource": http://dbpedia.org/resource/Chances_Are_%28film%29

You can see that the query getting the results you need here.

Note that the actual resource URI is the one with "resource" on it. The one with the "page" is the one you are redirected to when you resolve the original one in a browser. So in future SPARQL queries use "resource" instead of page.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.