Graph Server and Client 21.1
Using Java API:
var graph = session.getGraph("Moneyflows");
String pgql = "UPDATE e SET (e.amount = 100) FROM MATCH (u)-[e]->() WHERE u.acc_id = 10";
PgqlResultSet updateResultSet = graph.executePgql(pgql);
I am currently seeing this error:
08:10:14,785 ERROR PgxRemoteFuture - caught exception
java.lang.IllegalArgumentException: cannot update non-transient (shared) properties code: PGX-ERROR-1UWS3O598TQ2
Any suggestion?