DocumentDB has recently released the change feed. Via the API you can request the changesets.
Parameters here are continuation token & max item count. If I got this correctly, you start with continuation token = null. You request max x items, and if there are more items available, a continuation token comes with the response. This way, you know another changeset is available.
If the continuation token in the response is empty, you got all result.
However, the next time you request the API, you don't have a continuation token to continue... Will this result in the full database as changeset? How can I prevent this? Do I need to call the API with the latest token ever used? Will this result in some changes that will be handled a second time?
With Change Feed, you always get a continuation token back (unlike query and read-feed which do not return a continuation token when there are no more results).
Please see https://github.com/Azure/azure-documentdb-dotnet/blob/master/samples/code-samples/ChangeFeed/Program.cs#L127 for an example.