I am trying to fetch listings in single country using mongoose .find(filters) s such:
const listings = await Listing.find({
countryForInvestmemt: country,
status: "Published"
});
However, it just returns all the listing without filtering them
the country parameter is working fine
1