You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
java.lang.UnsupportedOperationException: Creating unidirectional edges is not supported from remote database
at com.arcadedb.remote.RemoteVertex.newEdge(RemoteVertex.java:136)
at com.arcadedb.remote.RemoteMutableVertex.newEdge(RemoteMutableVertex.java:189)
at net.adbogm.Transaction.store(Transaction.java:593)
at net.adbogm.SessionManager.store(SessionManager.java:189)
Could this lines be omited in RemoteVertex.java?
publicMutableEdgenewEdge(finalStringedgeType, finalIdentifiabletoVertex, finalbooleanbidirectional,
Object... properties) {
if (!bidirectional)
thrownewUnsupportedOperationException("Creating unidirectional edges is not supported from remote database");
...
The text was updated successfully, but these errors were encountered:
ArcadeDB Version: 24.11.2
Unidirectional edge are not supported in RemoteDatabase. This feature is needed to keep graph relations.
This line of code:
throw:
Could this lines be omited in RemoteVertex.java?
The text was updated successfully, but these errors were encountered: