How to group data using mongo-template
问题 I have to filter data based on a criteria and set a field isObtained true or false. Then I am trying to group the data based on field grade . This is my data: { "school": "xyz", "studentName": "John Doe", "grade": "first", "Hobbies": [ "Painting", "Singing" ], "language": [ "English" ], "sport": "Badminton", "totalStudyHours": 85 }, { "school": xyz, "studentName": "Jane Doe", "grade": "third", "Hobbies": [ "Painting", ], "language": [ "Spanish" ], "sport": "Karate", "totalStudyHours": 65 }, {