I have nodes with the following properties
(n:User {valUpper:100, valLower:-100})
(m:User {valUpper:200, valLower: 0})
Using cypher is it possible to find if (m)'s range overlaps with (n)?
This is what I would have done in js..
if max(x2, y2) - min(x1, y1) < (x2 - x1) + (y2 - y1) {
//Ranges Overlap
}