TypeORM의 Repository API를 사용하여 데이터를 변경하는 방법에는 update()와 save()등이 있다. update()update - Partially updates entity by a given update options or entity id.await repository.update({ age: 18 }, { category: "ADULT" })// executes UPDATE user SET category = ADULT WHERE age = 18await repository.update(1, { firstName: "Rizzrak" })// executes UPDATE user SET firstName = Rizzrak WHERE id = 1 save()save - Saves..