Mongodb – Project a mongo db array to comman seperated string
I have the following collection { "_id": "12345", "Products": [ "Product1", "Product2" ], "State": "active", } And would like to project it similar to the output below _id: "12345" Products: "Product1, product2" I tried this but im not getting the…