Het probleem was dat Quill async momenteel geen gelijktijdige bewerkingen binnen transacties ondersteunt.
Dus moest het dier achtereenvolgens worden ingebracht:
ctx.transaction { implicit ec =>
for {
personId <- ctx.run(insertPersonQuery)
animals = personCreate.animals.map(Animal.apply(personId, _))
_ <- animals.foldLeft(Future.successful(0l)) {
case (fut, animal) =>
fut.flatMap(_ => insertAnimal(animal))
}
} yield personId
}
ook, nog beter is om batch-invoeging te gebruiken :)
Bedankt voor @fwbrasil en @mentegy voor de hulp!