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
MATCH (from)-[rel:`SIMILAR_JACCARD`]-(to)
WHERE exists(rel.`score`)
RETURN from, to, rel.`score` AS similarity
ORDER BY similarity DESC
LIMIT toInteger($limit);
It would need to match a directed relationship, I am also wondering if it makes sense to add id(from) < id(to) to remove all duplicates from the table
I think all similarity algos behave the same, have to double check
The text was updated successfully, but these errors were encountered:
Similarity algos return directed networks.
Currently, the generated query looks like:
It would need to match a directed relationship, I am also wondering if it makes sense to add
id(from) < id(to)
to remove all duplicates from the tableI think all similarity algos behave the same, have to double check
The text was updated successfully, but these errors were encountered: