My question is related with mongo and Phalcon ODM, how he handle the situation when im giving an empty value to be saved on existing document with existing value? Actuly in update.
$eventsModel->date = $request->date;
$request->date can have value ,but its possible to be empty .What happens when i save this ? Is mongo read that i have value in date and decide to ignore the new null value or will overwrite the existing date with null ?
Have I make check on every field is it empty or not ?