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
none of our mutate algorithm procedures have an option to overwrite existing properties, which is by design. New property values, even if produced by the same algorithm on the same data, do not necessarily have to be the same data, by values or semantically. So, we can't assume that overwriting is safe and put up some hoops to get to that outcome.
In order to overwrite a property, you have to first drop it and then run the mutate algorithm again:
I'm gonna leave this issue open for now, since we could add a failIfMissing options to the config for nodeProperties.drop, to align it with graph.drop.
The pageRank algo from the Python client is not idempotent.
I got this error:
neo4j.exceptions.ClientError: {code: Neo.ClientError.Procedure.ProcedureCallFailed} {message: Failed to invoke procedure
gds.pageRank.mutate
: Caused by: java.lang.UnsupportedOperationException: Node property pageRank already exists}Could we have a replace option?
Also
The text was updated successfully, but these errors were encountered: