const update_mutations = [
{inventoryItemID: 123, quantity: 10},
{inventoryItemID: 345, quantity: 5},
inventoryBulkAdjustQuantityAtLocation(
locationId: "${gql_location}",
inventoryItemAdjustments: [
`{inventoryItemId: "${x.inventoryItemID}", availableDelta: ${x.quantity}}`,
let response = await shopify.graphql(mutationQuery);
console.log(JSON.stringify(response, null, 2));
console.log(error.message);