Created
August 31, 2018 17:32
-
-
Save shopifypartners/d908de1f7fe27ee8b2f637f003b6f6d5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mutation { | |
inventoryBulkAdjustQuantityAtLocation( | |
locationId: "gid://shopify/Location/1", | |
inventoryItemAdjustments: [ | |
{inventoryItemId: "gid://shopify/InventoryItem/1", availableDelta: 1}, | |
{inventoryItemId: "gid://shopify/InventoryItem/2", availableDelta: 10} | |
]) { | |
inventoryLevels { | |
available | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment