- Can you merge two orders in Shopify?
- Not natively. The Shopify admin has no button that combines two separate orders. You either ship them together, rebuild one order manually, or install an app that does the merge for you.
- Does Shopify Flow have a merge orders action?
- No. Flow has a Fulfillment order merged trigger, which fires after something else performs a merge. There is no action in Flow that merges two orders.
- What is the fulfillmentOrderMerge mutation then?
- It merges fulfilment orders inside a single order. If you split one order's line items across locations, that mutation puts them back together. It does not combine two different orders.
- Can I use Send Admin API request in Flow to merge orders?
- No. Shopify's documentation states the action supports mutations only, not GraphQL queries. Merging starts with a query for the customer's other open orders, so the workflow cannot get past the first step.
- Could I build order merging myself with Flow and a webhook?
- Yes, with caveats. Flow's Send HTTP request action can call your own service, which does the lookup and the merge through the Admin API. That action is available on the Grow, Advanced, and Plus plans only, and you are then maintaining order editing, refunds, tax handling, and retries yourself.
- Is Shopify Flow useful for order merging at all?
- Yes, for everything around the merge. Flow can tag repeat customers, hold fulfilment for an hour so a second order can arrive, and notify the warehouse. Merge apps including MergeIt emit an order merged trigger that Flow can act on.
- Can I combine shipping without merging the orders?
- Yes. Fulfil both orders and put the items in one parcel with a single label, then reuse that tracking number on the second order. Refund the duplicate shipping charge so the customer is not billed twice.
- Does cancelling an order hurt my analytics?
- It does not delete the order. Cancelled orders still count in order volume and pull on conversion rate and average order value, which is the main hidden cost of the cancel-and-rebuild method.
- Can I combine orders after one has been fulfilled?
- Not cleanly. Once an order is fulfilled, rebuilding it means unfulfilling or refunding work that has already left the building. This is why the practical answer is to catch duplicates within minutes, which is the part automation is good at.
- Is there a free app to merge Shopify orders?
- Yes. Rocketly and Order Merging are both free, and Triom, Mergify, and Order Merger by BoostApps all have free tiers. Free tiers usually cap merges or charge per merge after a handful.
- At what point is a merge app worth paying for?
- Roughly when duplicates pass ten a month. Below that, the manual route or a free app wins. Above it, the labour cost alone covers a paid plan before you count the saved labels.