public Flux<PortCall> updateByFindById(String gsisKey, PortCall portCall) {
return portCallRepository.findAllByVesselCode(portCall.getVesselCode())
.collectList().flatMap(list->{
return portCallRepository.saveAll(Flux.fromIterable(list));
});
}
Here I'm trying to invoke saveAll() of SimpleReactiveMongoRepository i.e public Flux saveAll(Iterable entities)
Don't you want: