Hi all - quick question about Prisma types and typ...
# orm-help
m
Hi all - quick question about Prisma types and typescript. Getting an error as I'm trying to type the Prisma response object with props as a number, but I get Prisma.Decimal | null is not compatible with number? What can I type this to?
r
@Moh 👋 It seems that you’re using
Float
. In this case the type would be exactly what’s specified by Prisma i.e.
Prisma.Decimal | null
.