I need to remove some node properties from my graph. Following the recommendations of cypher, I tried the following:
START n=node(1) DELETE n.property RETURN n
An error message appears:
Expression `Property` yielded `true`. Don't know how to delete that.
I can reproduce this on console.neo4j.org. How should you remove the node property?
source share