ArangoDB 在Arango WebUI中创建边

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

我尝试直接从Arango WebUI-Graphs界面添加边。但是,界面抱怨:

Could not create edge: edge collection not used in graph

实际上,我在图表中使用的是边集合,因此不清楚如何解决此错误。

6l7fqoea

6l7fqoea1#

这是Web界面的一个错误,已在v3.5.0中修复。如果无法更新到此版本,可以直接通过AQL界面创建边:

<code>INSERT {
  _from: "collection/vertex-id",
  _to: "collection/vertex-id",
  &lt;your-other-properties&gt;
} INTO &lt;your-edge-collection&gt;
</code>

相关问题