Closed
Description
I would like to be able to request a Document from CouchDB and optionally include the revs_info=true
parameter to retrieve which revisions are available in the database.
There are numerous ways that this could be implemented:
- Included with
FindOptions
and used inFindAsync()
- A separate function
Task<List<string>> GetAvailableRevisions(string)
and/orTask<List<Revision>> GetRevisionInfo(string)
- Include
revs_info
as a property onCouchDocument