ScottGal
ScottGal

Reputation: 31

RavenDB HTTP API Metadata all documents

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

Answers (1)

Matt Johnson-Pint
Matt Johnson-Pint

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

Documentation Here

Upvotes: 1

Related Questions