Class RDBMSUpdateAction

java.lang.Object
com.kingsrook.qqq.backend.module.rdbms.actions.AbstractRDBMSAction
com.kingsrook.qqq.backend.module.rdbms.actions.RDBMSUpdateAction
All Implemented Interfaces:
UpdateInterface

public class RDBMSUpdateAction extends AbstractRDBMSAction implements UpdateInterface
Only the fields which exist in the record's values map will be updated. Note the difference between a field being in the value map, with a null value, vs. not being in the map. If the field (its key) is in the value map, with a null value, then the field will be updated to NULL. But if it's not in the map, then it'll be ignored. This would be to do a PATCH type operation, vs a PUT. See https://rapidapi.com/blog/put-vs-patch/