I have a simple question: how do I get the document identifiers of all documents from this database in couchdb.
I wrote this code that retrieves all documents -
docs=CouchRest.get("http://localhost:5984/competency1/_all_docs?include_docs=true") puts docs.to_json
The above code displays all the database information. I want to be able to list only document identifiers.
I really appreciate your help.
Thanks.
source share