Warehouse Product Update

Hey @marioreinike,

I think this post might be of some help to you.

Would a mutation like this help:

mutation{
  
  alias_1:product_create(
    data: {
      name: "test-alias-1"
      sku: "test-alias-1"
      warehouse_products: { warehouse_id: "76733", on_hand: 0 }
    }
  ) {
    request_id
    complexity
  }
  
  
  alias_2:product_create(
    data: {
      name: "test-alias-2"
      sku: "test-alias-2"
      warehouse_products: { warehouse_id: "76733", on_hand: 0 }
    }
  ) {
    request_id
    complexity
  }
  
}

Please let me know if you have any questions or concerns. Don’t hesitate to reach out!

Best,
RayanP

1 Like