Skip to main content
mutation

Requires write_products access scope. Also: The user must have a permission to update products.

Updates a product with attributes such as title, description, vendor, and media.

The productUpdate mutation helps you modify many products at once, avoiding the tedious or time-consuming process of updating them one by one in the Shopify admin. Common examples including updating product details like status or tags.

The productUpdate mutation doesn't support updating product variants. To update multiple product variants for a single product and manage prices, use the productVariantsBulkUpdate mutation.


Note

The productUpdate mutation has a throttle that takes effect when a store has 50,000 product variants. After this threshold is reached, no more than 1,000 new product variants can be updated per day.


After updating a product, you can make additional changes using one of the following mutations:

  • productSet: Used to perform multiple operations on products, such as creating or modifying product options and variants.
  • publishablePublish: Used to publish the product and make it available to customers, if the product is currently unpublished.

Learn more about the product model and adding product data.

•[CreateMediaInput!]

List of new media to be added to the product.

•ProductUpdateInput

The updated properties for a product.

•ProductInput
Deprecated

Was this section helpful?

Anchor to ProductUpdatePayload returnsProductUpdatePayload returns

•Product

The updated product object.

•[UserError!]!
non-null

The list of errors that occurred from executing the mutation.


Was this section helpful?