我尝试直接从Arango WebUI-Graphs界面添加边。但是,界面抱怨:
Could not create edge: edge collection not used in graph
实际上,我在图表中使用的是边集合,因此不清楚如何解决此错误。
6l7fqoea1#
这是Web界面的一个错误,已在v3.5.0中修复。如果无法更新到此版本,可以直接通过AQL界面创建边:
v3.5.0
<code>INSERT { _from: "collection/vertex-id", _to: "collection/vertex-id", <your-other-properties> } INTO <your-edge-collection> </code>
1条答案
按热度按时间6l7fqoea1#
这是Web界面的一个错误,已在
v3.5.0
中修复。如果无法更新到此版本,可以直接通过AQL界面创建边: