return commandExecutor.execute(command);
}
@Override
public boolean nodeExists(String path, String revId) throws Exception {
Command<Boolean> command = new NodeExistsCommandMongo(mongoConnection, path, revId);
return commandExecutor.execute(command);
}