Home > Enterprise >  List available collections for database in ArangoDB using HTTP interface?
List available collections for database in ArangoDB using HTTP interface?

Time:11-25

I am trying to use ArangoDB's HTTP interface to dump all collections belonging to a specific database.

I am able to view all available databases using the following command:

curl http://localhost:8529/_api/database

However, once I find a database name (for example, "test") I am unable to dump the collections belonging to this database. Ultimately, I would like to dump the collections for this database, and then all results within a chosen collection.

I have followed the documentation provided here: enter image description here

  • Related