I have a set of documents where some of product_id are stored in string
[
{
"_id": ObjectId("foobar1"),
"product_id": "1"
},
{
"_id": ObjectId("foobar2"),
"product_id": 2
}
]
Is there any way to convert product_id to integer for all the documents using MongoDB PHP ?