How would I approach this using TypeORM?
I have an Entity lets call it EntityA.
I have 1 EntityA in my database with name = Joe, age = 17
Now my front end sends a post request to my API with an Object like { name: Joe, age: 16 }
How can I tell type orm to update the EntityA in the database with the name of "Joe" and only update the provided values that differ from what is currently stored in the database (age in this case) ?