【问题标题】:Creating edges in Arango WebUI在 Arango WebUI 中创建边缘
【发布时间】:2022-11-14 07:16:50
【问题描述】:

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

Could not create edge: edge collection not used in graph

我实际上在我的图表中使用了一个边集合,所以不清楚如何解决这个错误。

【问题讨论】:

    标签: arangodb


    【解决方案1】:

    这是 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>
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2019-03-01
      • 2020-08-01
      • 1970-01-01
      • 2016-10-02
      相关资源
      最近更新 更多