I have a state "Bill" and I want to delete one of item in "Product" with "ProductID". So how can I do it?
Bill = {
  "Bill_ID" : "a00231",
  "Products" : [
    {
      "ProductID" : "P0203",
      "ProductName" : "ABCD"
    },
    {
      "ProductID" : "P023243",
      "ProductName" : "ZYZ"
    }
  ]
}
How can I update the state after delete product item?
 
     
     
    