I have an API that retrieves documents based on keywords that appear in document fields. I would like to paginate results so that I can return documents to a client sending a re
You can also get the results in pages using fetch_next_block(). Note that: the user's code should not expose the continuation token
q = db_source._client.QueryDocuments(collection_link, query, {'maxItemCount': 10, 'continuation': True})
results = q.fetch_next_block()
ref: https://github.com/Azure/azure-documentdb-python/issues/98