On model PUT, I need to make custom validation, based on its original value. Inside beforeUpdate model hook I can access 'next' function, 'request body' object (as beforeUpdate arguments) and updated model itself via 'this' keyword.
Is there any way to get pristine model or its changes, without querying it from DB?
Is it even possible to update current model inside model hooks (because changing 'this' properties doesn't take effect)?