How to add Stock Inventory +1 when order is triggered?

Hey y’all, I stuck on Shopify flow since hours to do something really easy :

I want to add +1 quantity to my variant inventory when an order is triggered (Product variant quantity changed)

SO basically on the screenshot it’s just

{{productVariant.inventoryQuantity | plus: 1}} when (Product variant quantity changed) but I think I’m messing with my Metafield namespace and Key, and I can’t figure it out…

All my actions triggered are completed successfully but NOTHING happens on my inventory, totally stay the same.

Even tho I actualised many times the variant inventory of many products

Help me please

That metafield is a custom data field and not the inventory for your variant. You cannot use that to set the inventory. There isn’t current an “Update inventory” action. In fact, the way you set this up would result in an infinite loop where for every inventory update, it would update the inventory +1.

Since you want this to run on Order created, use the Order created trigger. If you want to adjust the inventory, you can accomplish that by using Send HTTP Request to call the API for changing inventory. This is pretty advanced though, if you are not familiar with making API calls.