I need status field from an object on screenshot: BookInstanceSchema
let useremail = await UserModel.findOne({ email: email });
Retrive the document from you collection. See the above example.
console.log(useremail.email);
This way you will get your field.