2
0
Files
bot/packages/bot-engine/queries/deleteSession.ts

9 lines
159 B
TypeScript
Raw Normal View History

import prisma from '@typebot.io/lib/prisma'
export const deleteSession = (id: string) =>
prisma.chatSession.deleteMany({
where: {
id,
},
})