Hi,
How do you check existence of the node if the property is type of array?
Before, I set the Product node's "vertical" property is 'string' type.
so I used like query below
match (w:Word)-[:SEARCH]->(c:Category)
with c
with collect(c)[0..5] as cs
r...