Mongodb 时差检查

Mongodb time difference check

这是我在 mongodb 文档中的数据

[
    {
        startTime: "08:00",
        endTime: "09:00",
        id: 1
    },
    {
        startTime: "08:10",
        endTime: "09:00",
        id: 2
    },
    {
        startTime: "10:00",
        endTime: "11:00",
        id: 3
    }
]

我需要找到一种使用 mongoose 和 node.js 获取时间重叠元素的方法 我尝试使用 $dateFromString 但到目前为止没有运气。 例如 item id 1 和 2 有时间重叠

db.collection.aggregate([
  {
    $match: {}
  },
  {
    $setWindowFields: {
      partitionBy: "",
      sortBy: { startTime: 1 },
      output: {
        previous_endTime: {
          $shift: {
            output: "$endTime",
            by: -1,
            default: "Not available"
          }
        }
      }
    }
  },
  {
    $set: {
      c: {
        $cond: {
          if: {
            $and: [
              { $gte: [ "$previous_endTime", "$endTime" ] },
              { $gte: [ "$previous_endTime", "$startTime" ] }
            ]
          },
          then: 0,
          else: 1
        }
      }
    }
  },
  {
    $setWindowFields: {
      partitionBy: "",
      sortBy: { startTime: 1 },
      output: {
        c: {
          $sum: "$c",
          window: { documents: [ "unbounded", "current" ] }
        }
      }
    }
  },
  {
    $group: {
      _id: "$c",
      c: { $sum: 1 },
      id_List: { $push: "$id" }
    }
  },
  {
    $match: { c: { $gt: 1 } }
  }
])

mongoplayground