I'm using a rest graph database and I would like to use Neo4jHelper.cleanDB to clean it in my test setup.
However, it seems the used RestGraphdabase class is not implementing the getNodeManager() method, which is invoked in the invocation chaining, starting from the cleanDB method.
The parent class AbstractRemoteDatabase, which is used in turn, has a partial implementation, throwing an Unsopported exception.
public NodeManager getNodeManager() {
throw new UnsupportedOperationException();
}
I'm using version 2.1.0.RC3 of both spring-data-neo4j and spring-data-neo4j-rest.
Any clean solution to clean DB?
Thanks


Reply With Quote