> 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 Uses Cases and Flows ## Article: Sample Uses Cases and Flows ## Article Link: https://dev.wix.com/docs/api-reference/business-solutions/restaurants/menus/items/item-variants/sample-uses-cases-and-flows.md ## Article Content: # Item Variants: 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 menu across all sites If you have several pizzeria sites, you might need to sync menus across those sites. For example, if there are new variants for a drink called "Small", "Medium", and "Large", this change also needs to be reflected on other sites. To sync the pizza menu across all sites: 1. Call [Query Variants](https://dev.wix.com/docs/api-reference/business-solutions/restaurants/menus/items/item-variants/query-variants.md) by the `name` field on the site where you updated the menu. 1. Extract all 3 `variant.name` field values. 1. Call [Bulk Create Variants](https://dev.wix.com/docs/api-reference/business-solutions/restaurants/menus/items/item-variants/bulk-create-variants.md) for your other sites and pass the new variants to each. 1. Call [Update Item](https://dev.wix.com/docs/api-reference/business-solutions/restaurants/menus/items/items/update-item.md) and add the new variant IDs to the `item.priceVariants.variants` array.