Do not edit field if value is null or empty
There are times that we need to edit a record with several fields, but we want to edit one at the time, so, we have to create several endpoints or overcomplicate the logic in order to update one field and not erase the value of other fields that are not being updated in this specific call. A proposed solution, is that we could pass empty input values to the endpoint, and have a checkbox to not edit this field if the value being past is emprty/null. This would also help reduce the number of endpoints that make changes to the same record but different fields.