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
It loops using different labels ( features ) one at a time, none of these labels are overlapping or share the same nodes, therefor each pageRank execution is working on a different group of nodes even if each execution share the same projection. But it still crashed saying the property has already be defined.
It's like if one mutate execution of pageRank on the same projection creates a property x, it's not possible to execute it again with the same property even if the nodes filtering is different and doesn't mutate the same nodes.
The text was updated successfully, but these errors were encountered:
GDS 2.8.0
Neo4j 5.22
GDS Python Client 1.11
The code below gives me 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}It loops using different labels ( features ) one at a time, none of these labels are overlapping or share the same nodes, therefor each pageRank execution is working on a different group of nodes even if each execution share the same projection. But it still crashed saying the property has already be defined.
It's like if one mutate execution of pageRank on the same projection creates a property x, it's not possible to execute it again with the same property even if the nodes filtering is different and doesn't mutate the same nodes.
The text was updated successfully, but these errors were encountered: