> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: beforeUpdate(item: object, context: UpdateHookContext) # Method package: wixDataHooks # Method menu location: wixDataHooks --> beforeUpdate # Method Link: https://dev.wix.com/docs/velo/events-service-plugins/data/hooks/wix-data-hooks/before-update.md # Method Description: A hook that is triggered before an `update()` operation. The `beforeUpdate()` hook runs when: + The [`update()`](https://dev.wix.com/docs/velo/api-reference/wix-data/update.md) function is called. + An action is performed on a dataset that updates an item from the collection. + An item is updated using the CMS. The hook also runs when an action is performed on a dataset that updates an item from the collection that the dataset is connected to. Return an object or a Promise that resolves to an object from the `beforeUpdate()` function. The returned object will be updated in the collection instead of the original item passed to the [`update()`](https://dev.wix.com/docs/velo/api-reference/wix-data/update.md) function. If the returned value is of the wrong type, the value is ignored. A rejected Promise blocks the call to [`update()`](https://dev.wix.com/docs/velo/api-reference/wix-data/update.md) and also calls the [`onFailure()`](#onFailure) hook if it has been registered. Because the `beforeUpdate()` hook is called before the [`update()`](https://dev.wix.com/docs/velo/api-reference/wix-data/update.md) is executed, it can affect the item that is updated in the collection or block the [`update()`](https://dev.wix.com/docs/velo/api-reference/wix-data/update.md). # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## A beforeUpdate hook ```javascript // In data.js export function myCollection_beforeUpdate(item, context) { let hookContext = context; // see below // some change to the received item return item; } /* * hookContext: * * { * "collectionName": "myCollection", * "userId": "f45jf8d2-grkj-2opd-4ovk-9rfj4wo5tvj3", * "userRole": "siteOwner" * } */ ``` ## Change the item to update using a beforeUpdate hook ```javascript // In data.js export function myCollection_beforeUpdate(item, context) { let hookContext = context; // see below // some change to the received item item.title = toUpperFirst(item.title); item.first_name = toUpperFirst(item.first_name); item.last_name = toUpperFirst(item.last_name); return item; } function toUpperFirst(s) { return s.charAt(0).toUpperCase() + s.slice(1); } /* * hookContext: * * { * "collectionName": "myCollection", * "userId": "f45jf8d2-grkj-2opd-4ovk-9rfj4wo5tvj3", * "userRole": "siteOwner" * } */ ``` ---