inventoryItemUpdate mutation

Updates an inventory item.

Required access

write_inventory access scope.


On this page


Interactive example

This is an example mutation query.

mutation inventoryItemUpdate($id: ID!, $input: InventoryItemUpdateInput!) { inventoryItemUpdate(id: $id, input: $input) {
  1. <font style="color:#1F61A0;">inventoryItem</font> <font style="color:#555555;">{</font>
  2. <font style="color:#1F61A0;">id</font>
  3. <font style="color:#555555;">}</font>
  4. <font style="color:#1F61A0;">userErrors</font> <font style="color:#555555;">{</font>
  5. <font style="color:#1F61A0;">field</font>
  6. <font style="color:#1F61A0;">message</font>
  7. <font style="color:#555555;">}</font>
} } { “id”: “Z2lkOi8vU2hvcGlmeS9FeGFtcGxlLzE=”, “input”: {} }


Arguments

Argument Description
id
(
[ID!](https://shopify.dev/docs/admin-api/graphql/reference/scalar#id-2021-01)

) REQUIRED
The ID of the inventory item to update.
input
(
[InventoryItemUpdateInput!](https://shopify.dev/docs/admin-api/graphql/reference/inventory/inventoryitemupdateinput)

) REQUIRED
The updated properties for the inventory item.


InventoryItemUpdateInput fields

  • cost ([Decimal](https://shopify.dev/docs/admin-api/graphql/reference/scalar#decimal-2021-01))
    Unit cost associated with the inventory item, the currency is the shop’s default currency.
  • countryCodeOfOrigin ([CountryCode](https://shopify.dev/docs/admin-api/graphql/reference/common-objects/countrycode))
    The ISO code of the country of origin.
  • countryHarmonizedSystemCodes ([[CountryHarmonizedSystemCodeInput!]](https://shopify.dev/docs/admin-api/graphql/reference/inventory/countryharmonizedsystemcodeinput))
    List of country-specific harmonized system codes.
  • harmonizedSystemCode ([String](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01))
    The harmonized system code of the inventory item.
  • provinceCodeOfOrigin ([String](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01))
    The ISO code of the province of origin.
  • tracked ([Boolean](https://shopify.dev/docs/admin-api/graphql/reference/scalar#boolean-2021-01))
    Whether the inventory item is tracked.


Return fields

  • inventoryItem ([InventoryItem](https://shopify.dev/docs/admin-api/graphql/reference/inventory/inventoryitem))
    The updated inventory item.
  • userErrors ([[UserError!]!](https://shopify.dev/docs/admin-api/graphql/reference/usererror))
    List of errors that occurred executing the mutation.