Hi, all.
Suppose I have this:
(a:Reader)
(b:Book)
(c:Book)
(a)-[:LIKES {weight:5}]->(b)
(a)-[:LIKES {weight:13}]->(c)
And now I want to infer the edge (b)-[:SIMILAR_TO {weight?}]->(c).
That is, I want infer that two books are similar because the same...