Is there a way to get all documents from db instead of specifying an id and getting a single document using the lightcouch api in Java. I am currently using the method
JsonObject json = dbClient.find (JsonObject.class, "some-id") to get one document.
Thanks in advance.
source
share