When running the query
db.graduates.find({student_id: '2010-01016'}).pretty()
, it returns a result.
Afterwards, I created a function:
function findStud(name,value){ return db.graduates.find({name:value}); }
However, while executing
findStud("student_id","2010-01016")
on the mongo shell, the results are not displayed.