Hello, i'll try to explain for what I understand in a query:
MATCH p = (:Organization)-[*0..2]->(:User)<-[*0..1]-(:Group)
RETURN p
The "Organization" and the "Group" if are in a fixed schema it can be a solution? For fixed I mean a "Group" is within...
Hello, I'll try to reduce the question to a query, that I'll explain later:
MATCH (p:Products)
[WITH]
WHERE p.attribute = 'attribute_1' [OR|AND] p.attribute = 'attribute_2'
RETURN p.attribute ORDER BY p.attribute_for_relevance LIMIT number_of_row
The...