When I try to look for The Machine and many other films in LinkedMDB, I'm not able to find them. I can get the film's IMDB URL and query for the foaf:page property with the SPARQL endpoint, using a query like this, but it returns no results.
prefix dcterms: <http://purl.org/dc/terms/>
prefix foaf: <http://xmlns.com/foaf/0.1/>
prefix owl: <http://www.w3.org/2002/07/owl#>
select * where{
?film foaf:page ?imdb;
dcterms:title ?title
filter regex(str(?imdb), "http://www.imdb.com/title/tt0110425", "i")
}
As you can see, the query contains a regex in order to catch the matching resource. Are there some errors in my query or does the LinkedMDB repository not contain all the IMDB's films (the film that I'm looking for is very old)?