Answers for "mongodb aggregation $filter multiple conditions"

1

mongodb aggregation $filter multiple conditions

cond: {
  $and: [
    { $gte: ['$$item.timestamp_start', fromTimestamp] },
    { $lt: ['$$item.timestamp_start', toTimestamp] }
  ]
}
Posted by: Guest on March-24-2021

Code answers related to "mongodb aggregation $filter multiple conditions"

Browse Popular Code Answers by Language