79248513

Date: 2024-12-03 16:51:03
Score: 2
Natty:
Report link

It's actually a Prisma bug. https://github.com/prisma/prisma/issues/15013#issuecomment-1381397966

Change the filter clause to the following worked.

filter: [
    {
        equals: {
            value: { $oid: userId },
            path: 'user_id',
        },
    },
],
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Hao Zonggang