How to Update Product Through GraphQL APL

Hi @tomasw do you have any update on the ETA?

Hi @veraioele!
We have been testing last week. We are expecting it to release it this week, but I will let you know as soon as I have any update.
Thanks again for the patience!
Tom

Hi @veraioele @Mangesh
You should be able to set the product image as thumbnail using the Public API now.
With a Mutation like this:

mutation {
  product_update(
    data: {
      sku: "1122334507"
      images: {
        src: "https://.........jpg"
        position: 0
      }
    }
  ) {
    request_id
    complexity
  }
}

Position 0 means that it will be the thumbnail, and if you send a second one with 0 it will move the previous one to position 1 and keep the new one as the thumbnail.

Thanks again for the patience!
Tom

Any chance we can add the Active Field as well Auto fulfill? We periodically have to go through one of our customer’s account and download csv and reupload to fix new skus that the customer adds in shopify. (they are skus for another vendor, and this was the solution provided to ignore those skus)