import { Between } from 'typeorm' import { ChatMessageFeedback } from '../database/entities/ChatMessageFeedback' import { getRunningExpressApp } from '../utils/getRunningExpressApp' /** * Method that get chat messages. * @param {string} chatflowid * @param {string} sortOrder * @param {string} chatId * @param {string} startDate * @param {string} endDate */ export const utilGetChatMessageFeedback = async ( chatflowid: string, chatId?: string, sortOrder: string = 'ASC', startDate?: string, endDate?: string ): Promise => { const appServer = getRunningExpressApp() let fromDate if (startDate) fromDate = new Date(startDate) let toDate if (endDate) toDate = new Date(endDate) return await appServer.AppDataSource.getRepository(ChatMessageFeedback).find({ where: { chatflowid, chatId, createdDate: toDate && fromDate ? Between(fromDate, toDate) : undefined }, order: { createdDate: sortOrder === 'DESC' ? 'DESC' : 'ASC' } }) }