I need to do the following MySql approach in MongoDB:
SELECT * FROM table T WHERE DATE_ADD(T.createdAt, INTERVAL 2 DAY) > someDate;
I was thinking on aggregations, expressions, Etc., but I couldn't find a way to approach this.
Thanks in advance!