import prisma from '@typebot.io/lib/prisma' import { Answer, Result } from '@typebot.io/schemas' type Props = { id: string } export const findResult = ({ id }: Props) => prisma.result.findFirst({ where: { id, isArchived: { not: true } }, select: { id: true, variables: true, hasStarted: true, answers: { select: { content: true, blockId: true, variableId: true, }, }, }, }) as Promise< | (Pick & { answers: Pick[] }) | null >