如何在ArangoDB中获得整个图形?

a8jjtwal  于 2022-12-09  发布在  Go
关注(0)|答案(1)|浏览(167)

使用arangojs ArangoDB驱动程序。

const db = new Database();
const graph = db.graph("some-graph");
const data = await graph.get();
// data only contains general information about the graph

如何以JSON格式获取整个图,包括数据节点和边?

ewm0tg9j

ewm0tg9j1#

尝试the tutorial,在其中发出遍历查询并获取结果。

相关问题