inventoryAdjustQuantity mutation
Adjusts the inventory by a certain quantity.
Required access
write_inventory
access scope.
On this page
Interactive example
This is an example mutation query.
mutation inventoryAdjustQuantity($input: InventoryAdjustQuantityInput!) { inventoryAdjustQuantity(input: $input) {} } { “input”: {
<font style="color:#1F61A0;">inventoryLevel</font> <font style="color:#555555;">{</font>
<font style="color:#1F61A0;">id</font>
<font style="color:#555555;">}</font>
<font style="color:#1F61A0;">userErrors</font> <font style="color:#555555;">{</font>
<font style="color:#1F61A0;">field</font>
<font style="color:#1F61A0;">message</font>
<font style="color:#555555;">}</font>
} }
<font style="color:#8B2BB9;">"inventoryLevelId"</font><font style="color:#555555;">:</font> <font style="color:#D64292;">"Z2lkOi8vU2hvcGlmeS9FeGFtcGxlLzE="</font><font style="color:#555555;">,</font>
<font style="color:#8B2BB9;">"availableDelta"</font><font style="color:#555555;">:</font> <font style="color:#2882F9;">1</font>
Arguments
InventoryAdjustQuantityInput fields
- availableDelta (
[Int!](https://shopify.dev/docs/admin-api/graphql/reference/scalar#int-2021-01)
) REQUIRED
Count by which to adjust the available quantity. - inventoryLevelId (
[ID!](https://shopify.dev/docs/admin-api/graphql/reference/scalar#id-2021-01)
) REQUIRED
ID of the inventory level to adjust.
Return fields
- inventoryLevel (
[InventoryLevel](https://shopify.dev/docs/admin-api/graphql/reference/inventory/inventorylevel)
)
Represents the updated inventory quantity of an inventory item at a specific location. - userErrors (
[[UserError!]!](https://shopify.dev/docs/admin-api/graphql/reference/usererror)
)
List of errors that occurred executing the mutation.