Objectify framework makes it easier to interact with Google Datastore and I'd like to know if it was possible to ofy().save() an entity but only change in the database the values that aren't null.
Because I make a new instance of the entity and I don't have access to all its attributes values (data comes from a POST and things like relation keys are missing) I wanted to just change store/edit the attributes received (like a SQL Update).
I tried using @IgnoreSave(IfNull.class) but after saving and checking the saved entry the attributes that weren't set at save() time are set to null and I loose relationship with other entities.