Product Case Barcodes Endpoint?

Hey @fairweather,

Thanks for hanging in there. We are able to assign the case_barcode through product_update. It would look something like this:

mutation{
  product_update(data:{
    sku:"sku"
    cases:[{
      case_barcode:"half dozen"
      case_quantity:6      
    },{
      case_barcode:"dozen"
      case_quantity:12         
    }]
  }){
		request_id
    complexity
    product{
      created_at
    }
  }  
}

You can find more information here if needed. Adding this from creation is on the way!

Please let me know if you have any questions or concerns.

Best,
RayanP