Skip to Main Content

Database Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

[PGQL-on-PGX] cannot update non-transient (shared) properties code

Ryota-OracleApr 18 2021

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?

This post has been answered by Ryota-Oracle on Apr 18 2021
Jump to Answer
Comments
Post Details
Added on Apr 18 2021
1 comment
235 views