I am working with a NoSQL database and I want to know if it is possible to use a continuation token in my queries. I need this for pagination purposes so I can efficiently retrieve large datasets.
7
answers
SkylitEnchantment
Fri Feb 28 2025
Azure Cosmos DB, which supports NoSQL query executions, is stateless on the server side.
StormGalaxy
Fri Feb 28 2025
The .NET SDK and Java SDK offer a useful feature for query progress tracking.
Raffaele
Fri Feb 28 2025
Continuation tokens can be utilized as bookmarks in these SDKs.
CryptoMagician
Fri Feb 28 2025
These tokens allow users to resume their queries from where they left off.
SolitudeSerenade
Thu Feb 27 2025
This means that queries can be paused and resumed without losing progress.