Hi everyone,
I’m trying to activate Shopify inventory for products using Make (formerly Integromat) and GraphQL, but I’m running into some issues. Here’s my setup:
-
I have a CSV of products and quantities.
-
I use Make’s module to create products in Shopify.
-
I use Make’s module to set the inventory level in Shopify.
- Inventory levels get pulled in, but the inv. tracking toggle is still set to off…
-
I’m trying to use
inventoryActivateto enable the toggle, but nothing happens?
My mutation looks like this:
mutation {
inventoryActivate(
inventoryItemId: "{{24.body.data.product.variants[].inventoryItem.id}}",
locationId: "gid://shopify/Location/114090279237"
) {
inventoryLevel {
id
}
userErrors {
field
message
}
}
}
Thanks!

