There is a cloudant database that stores some documents.
There is also mobile app that takes those documents by using search indexes.
Question is: Is it possible to make query "get me all indexes that appear after this one"?
For example: I start app, and get from database documents with id 'aaa','aab' and 'aac'. I want to store last id - 'aac' - in memory of my app. Then, when I start the app, I want to get from database documents that appeared after 'aac'.
I think the main problem will be, that _ids are assigned as random strings, but I want to be sure.