I am new to node and MongoDB
I am trying to fetch valid coupon data from the table for today, but getting only blank results. Please let me know if I am missing some code.
Here From and Till are the table fields.
const today = new Date(moment(new Date()));
var findData = {
From: { $gte: today },
Till: { $lte: today },
};
var items = await couponTable.find(findData);