Hi,
Could you please provide some sample of your Cypher query leading to this problem?
My guess is you are using CREATE which leads to duplicate nodes. Instead, you should probably use MERGE which will first check whether the nodes already exist. See...
Hi,
Assuming the relationship has a numeric property as required, is it possible to use it as relationshipWeightProperty even if head and tail nodes belong to different labels ?
I am trying to train a GraphSAGE model in the multiLabel configuration, ...