I can't find anything in the freebase docs about this, but it seems like they limit the number of results to 100. For example:
[{
"type":"/base/popstra/celebrity",
"name":null
}]
It returns only 100 results, whereas
[{
"type":"/base/popstra/celebrity",
return:"count"
}]
Says there are 6,244 results. Does anyone know how to get the rest? I know that I can limit the queries to a certain parameter, for example, a country, and then generalize the results, but I would prefer something less hacker.
source
share