I have an entity of name Items. I have another entity mapping which maps these items to customer.
I have a function which takes a list of items:
I want to do items = itemsRepository.saveAll(items)
Then after getting the id I want to iterate and map them.
I want to know whether .saveAll returns items in the same order as they have been in the arguments