Sorting on collection documents based on array field in mongodb
Below is sample doc of collection. { name:"sam", age:20, hobbies: [ {id:1, value: "football"}, {id:2 value:"chess"} ] }, { "name": "Bob", "age": 30, "hobbies": [ { "id": 1, "value": "painting" }, { "id": 2, "value": "gardening" } ] }, {…