I want to remove an element from an array property on node using Cypher.
I know the value of the element I want to delete, but not its index.
eg. suppose i have node like
({some_array: ["apples", "oranges"]})
I need a query like (pseudocode):
MATCH (n) REMOVE "oranges" IN n.some_array
source share