Marco Repetto
Marco Repetto

Reputation: 336

Creating edges in Arango WebUI

I'm trying to add edges directly from the Arango WebUI-Graphs interface. However, the interface complaints that:

Could not create edge: edge collection not used in graph

I'm actually using an edge collection in my graph, so it is unclear how to troubleshoot this error.

Upvotes: 0

Views: 38

Answers (1)

ANISH SAJI  KUMAR
ANISH SAJI KUMAR

Reputation: 130

This is a bug with the web interface, and has been fixed in v3.5.0. If you are not able to update to this version, you can create edges directly through the AQL interface:

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

Upvotes: 1

Related Questions