I am trying to delete a column from every document of the mongodb. i am able to do it using the mongodb command but for the same in the UAT. i cannot use that command as we can access through only by restheart. Can you help with same with restheart.
i make the call using Postman.
db.CommodityActuals.update({"commodityValue" :{$exists: true}},{$unset:{"commodityValue":1}},{multi: true});
Thanks & Regards, Jagadeesh Pavan.