Problem with MongoDB compare date

Hey @Emonkey!

Can you try running the query using MongoDB date objects? Something like the following:

{
  date_created:{
    $gte: {$date: {{dateRange1.value.start}} } ,
    $lt: {$date: {{dateRange1.value.end}} }
  }
}

Let me know if that works or if you still run into issues!

2 Likes