如何使用 Rest API 导出 Orient DB(2.2.x) 模式?

How to export Orient DB(2.2.x) schema with Rest API?

我正在尝试使用 Http API.

导出 orient db (2.2.x)

http://localhost:2480/export/demo2

的 HTTP GET 请求

我需要单独导出数据库模式及其中的数据。需要建议才能做到这一点。提前致谢。

您不能使用 REST api 导出数据库,但是您可以 return 通过调用此 url 其架构(不要忘记进行身份验证):

http://<server>:<port>/query/YourDatabaseName/sql/select expand(classes) from metadata:schema

这是文档:

东方数据库 | Querying the schema

东方数据库 | REST API - Query