I am trying to query 2 specific movies and their imdb pages with linkedmdb and it throws a parse error.
I get a list of all movies when I remove the below line. How do I get links of a specific set.
FILTER (str(?title) IN ("The Magician","Royal Flash"))
Here is my code.
SELECT ?title ?imdbID
WHERE {
?film foaf:page ?imdbID .
?film dc:title ?title .
FILTER(regex(str(?imdbID), "www.imdb.com" ) )
FILTER (str(?title) IN ("The Magician","Royal Flash"))
}