Resolved! Node Similarity Algorithm (Weighted Jaccard) WHERE syntax
I am trying to run the weighted Jaccard algorithm on my graph (following the Neo4j documentation as reference) The code: CALL gds.nodeSimilarity.stream('test', { relationshipWeightProperty: 'strength', similarityCutoff: 0.1 }) YIELD node1, node2, sim...