When running a REMOVE statement in cypher, the query hangs. However, reading the database runs quickly, as expected.
Here's what I'm trying to do: MATCH (n:Node) WHERE exists(n.nodeIndex) REMOVE n.attribute
When I run MATCH (n:Node) WHERE exists(n.nodeIndex) RETURN count(n.ID)
it runs in 4ms.
We have Neo4j Enterprise 3.4.0 and I'm using the cypher shell.
Any help would be appreciated. Thanks!