MongoDB Query Dynamic Date Range?

Is anyone aware of a method to write a MongoDB query for a dynamic date-range?
I found this link online, and tried the code below, but it does NOT work in the connector:
...
"order_date" : {
$lt: new Date(),
$gte: new Date(new Date().setDate(new Date().getDate()-1))
}
Any thoughts on how we can do something like this in the connector?
**Say “Thanks” by clicking the “heart” in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"
Comments
-
I know this question is very old, but I had a similar problem and solved it with an aggregation pipeline. Note, this requires MongoDB 4.2 or later.
{$expr: {$gt: ["$order_date", {$subtract: ['$$NOW', 24*60*60*1000]}]}}
This compute an "age" field that I can then filter on. I don't know if there's a simpler way but this worked for me.
I also defined this pipeline in a MongoDB view and queried the view from Domo, using the simpler "Find" method. It's easier to manage complex pipelines outside of Domo. But whether you do that is your choice.
0
Categories
- 10.5K All Categories
- 8 Connect
- 918 Connectors
- 250 Workbench
- 472 Transform
- 1.7K Magic ETL
- 69 SQL DataFlows
- 477 Datasets
- 200 Visualize
- 254 Beast Mode
- 2.1K Charting
- 11 Variables
- 17 Automate
- 354 APIs & Domo Developer
- 89 Apps
- 3 Workflows
- 20 Predict
- 5 Jupyter Workspaces
- 15 R & Python Tiles
- 247 Distribute
- 63 Domo Everywhere
- 243 Scheduled Reports
- 21 Manage
- 42 Governance & Security
- 179 Product Ideas
- 1.2K Ideas Exchange
- 12 Community Forums
- 27 Getting Started
- 14 Community Member Introductions
- 55 Community News
- 4.5K Archive