I need to delete all indexes & constraints in my Neo4j database.
Until today I was successfully using the following procedure:
//delete all indexes & constraints
CALL apoc.schema.assert({},{},true) YIELD label, key RETURN *
However, as of today it r...