calculateReactionTimingsBetweenDates({ start, end, departmentId }: { start: Date; end: Date; departmentId?: string }) {
        const match: Document = {
            $match: {
                t: 'l',
                ts: { $gte: new Date(start), $lte: new Date(end) },