Database

db={faq:[{"_id":1,"category_code":1,"faq_title":"When you can't create account","del_flg":"N"},{"_id":2,"category_code":1,"faq_title":"When you change your account","del_flg":"N"},{"_id":3,"category_code":1,"faq_title":"When you lost your account","del_flg":"Y"}],category:[{"_id":1,"category_name":"about account"}]}

Query

db.category.aggregate([{$lookup:{from:"faq",let:{id:"$_id"},pipeline:[{$match:{$expr:{$eq:["$$id","$category_code"]},"del_flg":"N"}}],as:"faq"}}])

Result