Now i am using query like this:
const results = await User.aggregate([{$match: {"email": 'email here'}},{ $lookup:{ from: "businesses", localField: "businessId", foreignField: "_id", as: "businesses" } }]);
and i need to get other objects that belong to every single business, what is the way?