We are using continuationTokens for paging query results in Azure Cosmos DB.
According to documentation: https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/query/pagination#continuation-tokens
In the .NET SDK and Java SDK, you can optionally use continuation tokens as a bookmark for your query's progress. Azure Cosmos DB for NoSQL query executions are stateless at the server side and can be resumed at any time using the continuation token.
I wonder how long each continuation token is persisted in my Azure CosmosDB account?
Can I cleanup/delete continuation tokens?
Is the continuation tokens stored on container or account level?
Are there any limits in how many stored continuation tokens I can use?