We can filter the collection data with multiple conditions by using logical AND operator. Also, we can separate the multiple conditions with
comma in the conditions document.
below is the sample code,
>db.Person.find( { "name": "XYZ", "MailID": "abc1234@gmail.com" } )
Above command returns the documents which satisfy the both conditions Name=XYZ and mailID=abc1234@gmail.com