> 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 ## Resource: Sample Use Cases and Flows ## Article: Sample Use Cases and Flows ## Article Link: https://dev.wix.com/docs/api-reference/business-solutions/restaurants/menus/items/item-modifiers/sample-use-cases-and-flows.md ## Article Content: # Menu: Sample Use Cases & Flows This article presents possible use cases and corresponding sample flows that you can support. It provides a useful starting point as you plan your implementation. ## Sync pizza menus across all sites If you have several pizzeria sites, you might need to sync menus across those sites. For example, if there's a new item modifier called "Anchovies", this change also needs to be reflected on other sites. To sync the pizza menu across all sites: 1. Call [Query Modifiers](https://dev.wix.com/docs/api-reference/business-solutions/restaurants/menus/items/item-modifiers/query-modifiers.md) by the `name` field on the site where you created a new item modifier. 1. Extract the `modifiers.id`, `modifiers.name`, and `modifiers.type` fields. 1. Call [Create Modifier](https://dev.wix.com/docs/api-reference/business-solutions/restaurants/menus/items/item-modifiers/create-modifier.md) for your other sites and pass the new item modifier to each. 1. Call [Update Section](https://dev.wix.com/docs/rest/business-solutions/restaurants/wix-restaurants-new/menus/sections/update-section.md) and add the new modifier ID to the `section.itemIds` array.