Mongoose mendapatkan elemen yang mengandung substring

Books.find(
    { "authors": { "$regex": "Alex", "$options": "i" } },
    function(err,docs) { 
    } 
);
SeriousMonk