Hi Dumitru,
There are two ways to limit the number of results returned.
First is using TopRows, which simply returns the first x rows of the result:
{
"params": {
"topRows":25
}
}
The second method is more flexible and has two parameters: StartingRow and RowCount. This would be more useful for pagination. Unfortunately, it appears to be broken at the moment as it's dependent on the underlying capabilities of the database server. Interbase has a ROWS parameter in recent versions, but older versions did not. We can try to address in a future update.
Dumitru, how many rows are you looking to present to the user? The current limit is around one hundred thousand results. Do you really need to present more results than that?
Dan