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 in FindAsync()
- A separate function
Task<List<string>> GetAvailableRevisions(string) and/or Task<List<Revision>> GetRevisionInfo(string)
- Include
revs_info as a property on CouchDocument