Created
May 16, 2019 17:35
-
-
Save fabiensebban/0d0f1de7ae9b6e4d29105227d658c1c6 to your computer and use it in GitHub Desktop.
inventoryBulkAdjustQuantityAtLocation with variables
This file contains 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 ($inventoryItemAdjustments: [InventoryAdjustItemInput!]!, $locationId: ID!) { | |
inventoryBulkAdjustQuantityAtLocation(inventoryItemAdjustments: $inventoryItemAdjustments, locationId: $locationId) { | |
inventoryLevels { | |
id | |
available | |
} | |
userErrors { | |
field | |
message | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment