Now you can set which collection to use, the sorting order and filters. I would like these two options.
-
Limit results to x number of records
If I just want to show the last 2 news items I just setup this to limit 2 and the sorting descending on created. -
Offset to x number of records
If creating a news magazine site I would want the top news larger so I will use the above with limit 1 and the I want a list of three news. Then I set the offset to 1 here, limit to 3 and then it will skip the first one and get the three records after that.
Can be done in code but it would be better if it where properties on the dataset.