How to make sorting functional well if it is case sensitive. how can we make it correct
Please suggest best way to fix it
db.products.aggregate([
{
"$unwind": "$receipe"
},
{
"$unwind": "$receipe.burger"
},
{
"$sort": {
"receipe.burger.name": 1
}
}
])
https://mongoplayground.net/p/2pnUABI_-Mr
in my example familyburger should display first rather than Paneer Burger.