This query returns a result db.graduates.find({student_id: '2010-01016'}).pretty()
and then I built a function
function findStud(name,value){ return db.graduates.find({name:value}); }
on the mongo shell when I run this findStud("student_id","2010-01016")
it does not display the results