Before 12 days the below sparql query was working properly but when Dbpedia update the interface of the website in 2021 the same query could not retrieve any result. Actually there is no wikipagewikilink that was exist to connect movies and other resources. the query that I used is
PREFIX dbont: <http://dbpedia.org/ontology/>
SELECT distinct ?p ?o
WHERE { <http://dbpedia.org/resource/The_Terminator> ?p ?o. ?o <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> dbont:Film.}
The result that I got before was all movies that are linked with terminator Film by WikiPageWikiLink predicate. but now there are no such results.
Are there any changes occurred on DBpedia server? Is this property(WikiPageWikiLink) removed ?
Is there any other way to get the movies that are directly linked to specific movie?
Thank you.