How to remove an element from an array in redisgraph
Consider the below data in the redisgraph database.
graph.query Test "MATCH (u:Person) Create (:Person {address:['something1', 'something2']})"
I need to remove something1
from the address list.
How can we achieve by writing a cypher query in redisgraph database?