Hi friends, i am getting the following error when ...
# prisma-client
k
Hi friends, i am getting the following error when trying to insert into mongodb: unfortunately prisma does not indicate the name of field that is the problem in this error message.
Copy code
16 try {
  17     const response = await PrismaService.$transaction(
  18         payload.map((p) =>
→ 19             PrismaService.salesByContractAddress.upsert(
Error parsing GraphQL query: query parse error: Parse error at 23:14
number too large to fit in target type
is there some way i can determine which field in the schema is the problem?
✅ 1
h
Prisma currently doesn’t support
Decimal128
. You can follow this ticket: https://github.com/prisma/prisma/issues/12637