Reputation: 31
is there a url which when called on the http api would return the metadata for all documents contained in the DB? I know I can get it for one type / doc but don;t know how to do it for all types. Scott
Upvotes: 1
Views: 261
Reputation: 241525
You can call /docs
to get all documents. If you just want the metadata, there is a querystring parameter for that:
GET http://localhost:8080/docs/?metadata-only=true
Upvotes: 1