DBPedia正在跳过一些文章

时间:2016-05-23 19:56:17

标签: sparql dbpedia

我有一个Sparql查询:

SELECT DISTINCT ?film_title ?title ?year 
WHERE {
?film_title rdf:type <http://dbpedia.org/ontology/Film> .
?film_title rdfs:label ?title .
?film_title <http://dbpedia.org/ontology/releaseDate> ?year .
FILTER (LANG(?title)='en')
} ORDER BY DESC(?year) LIMIT 100 OFFSET 0

我使用降序发布年份。但有些电影不见了,比如https://en.wikipedia.org/wiki/The_Lady_in_the_Car_with_Glasses_and_a_Gun_(2015_film)。它于2015年8月5日发布,但仍不在列表中。

我在这里做错了吗?

1 个答案:

答案 0 :(得分:0)

DBpedia没有该电影的参赛作品。如果文章是最近创建的,它可能不在最新的DBpedia中。

相关问题