kubele
Johan
dany giguere
// oneToMany relationship query example suspend fun findByIdWithImages(id: Long): PostWithImagesDto? = coroutineScope { val post = async{findById(id)} val images = async{imageRepository.findByPostId(id)?.toList()} return@coroutineScope post.await()?.toPostWithImagesDto()?.copy(images = images.await()) }
A modern programming language that makes developers happier.