I am developing my first app and want to be efficient in collecting data from Adalo via API.
My use case is to grab a recent record created in a collection and send it to an external source. My plan is to use OFFSET, LIMIT, and a count of records to get the last 10 created records in one API call.
Is it true that the records requested from The Adalo API are ordered by creation date?
For example, if there are 615 records in a collection, can I set offset=605
and limit=100
and assume that this will safely capture all records created AFTER the 605th created record.