Lepetere / clarango

A Clojure Driver for ArangoDB

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

collection/get-all-documents needs update to work with ArangoDB v2.6

Lepetere opened this issue · comments

commented

Quote from the change docs:

Document address URLs are now prefixed with the current database name for calls to the REST API method GET /_api/document?collection=... (that method will return partial URLs to all documents in the collection).

Previous versions of ArangoDB returned the URLs starting with /_api/ but without the current database name, e.g. /_api/document/mycollection/mykey. Starting with 2.6, the response URLs will include the database name as well, e.g. /_db/_system/_api/document/mycollection/mykey.

commented

This was already fixed with 148b8dd.