Sparql 查询从 dbpedia 获取所有可能的电影
为了获取所有可能的电影名称,我使用了 sparql 查询:
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?film_title ?film_abstract
WHERE {
?film_title rdf:type <http://dbpedia.org/ontology/Film> .
?film_title rdfs:comment ?film_abstract
}
它只返回了 10,000 部电影。 DBpedia 在其网站上提到,它拥有大约 60,000 部电影。 对于我的应用程序,我需要所有可能的电影。有人可以指导我还有什么其他可能性来获得其余的电影吗
To get all the possible film name, I used sparql query:
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?film_title ?film_abstract
WHERE {
?film_title rdf:type <http://dbpedia.org/ontology/Film> .
?film_title rdfs:comment ?film_abstract
}
It returned me only 10,000 movies.
DBpedia mentions on its website that it has around 60,000 movies.
For my application I need all the possible movies. Could someone guide me what all other possibilities are there to get rest of the movies
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DBPedia 对一次调用可以返回的结果数量有上限。如果您想获取所有这些,您可以使用限制和偏移量通过多个查询来完成,例如(限制 1000 偏移 0、限制 1000 偏移 1000 等)。所以你的第一个查询是:
DBPedia has a cap on how many results it can return in one call. If you want to get all of them you can do it through multiple queries using limit and offset e.g. (limit 1000 offset 0, limit 1000 offset 1000 etc.). So you first query would be: