here is the model of my collection :
classes:[{
            class:String,
            info:{
                    subjects:[String],
                    students:[{
                        name:String,
                        surname:String,
                        matriculae:Number,
                        path_1:String,
                        path_2:String
                    }],
                    classTeacher:{
                        name:String,
                        surname:String
                    }                   
                }
            }],
    accademicYear:String}];  
I'd like to retrive value 'matriculae' given the name,surname and accademicYear of a student. I cant wrap my head 'round it tho! Thanks for help.
