Reputation: 336
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
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",
<your-other-properties>
} INTO <your-edge-collection>
</code>
Upvotes: 1