I have several databases in an orientdb server and am using Orient js and node js. I am trying to get the names of all the databases by using the server.list() method but can only get the length of the list which just tells me the number of total databases in my server.
How can I get the names of the databases using Orient js?
You could use the RESTful HTTP protocol to get what you need:
Syntax:
http://<server>:<port>/listDatabasesSource: OrientDB REST > listDatabases