How perform a bulk Update of inventoryQuantities?

hi

I have multiple variante, i want to update them in a bulk ways.

How do you perform it ?

i see that InventorQunatities only work when you create the variant as reported it [updating-with-productvariantupdate-with-inventoryquantities-has](http:// https://community.shopify.com/post/1253081)

but the solutions is market ad deprecated https://shopify.dev/docs/api/admin-graphql/2023-04/mutations/inventorybulkadjustquantityatlocation

How perform bulk update of level of inventor quantites ? thanks

products(query:“tag:${DEFAULT_TAG_PRODUCT}”) {
edges {
node {
id
title
variants{
edges {
node {
id
sku
inventoryQuantity
inventoryItem {
id
}
}
}
}
}
}
}
}

I also try do do the previous query with in Bulk Query with no success!

i miss the rights scopes about, read_inventory, and write inventory