Our MongoDB database currently stores order information with the "item_list" field as a string like
"item_list" : "[{\"item_id\":14243,\"price\":7500,\"quantity\":1},{\"item_id\":1424,\"price\":2500,\"quantity\":1}]"
I am looking for a way to convert this string into a list object.
The desired final format should be:
"item_list" : [{item_id:14243,price:7500,quantity:1},{item_id:1424,price:2500,quantity:1}]