I have a property on the node which is stored as array of strings. But when I use this field to find the node, it's not returning any results. What am I doing wrong?
Below is the node:
MATCH (n:Product)
WHERE
n.id_product = 8
RETURN
n.keyterms
["financial tool", "personal finance"]
I am trying to find nodes using the below:
MATCH (n:Product)
WHERE
["financial tool"] in n.keyterms
RETURN
n.keyterms