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 returns the following msg:
Neo.ClientError.Procedure.ProcedureNotFound
There is no procedure with the name apoc.schema.assert
registered for this database instance. Please ensure you've spelled the procedure name correctly and that the procedure is properly deployed.
Any idea what has happen & how could I fix this?
Thanks!