How to upload image file on shiphero

I want to add images on shiphero and uploading image file, how to do it using Graphql?

Hi @abubakartws !
To add images to a product, you would use the product_update mutation and add the URL of the image.

mutation {
  product_update(
    data: {
      sku: "xxenter sku herexx"
      images: {
        src: "xx enter URL of the image your adding here xx"
      }
    }
  ) {
    request_id
  }
}