Replies: 1 comment
-
Could you try enabling debugging printouts, to see what comes up? Edit: also, you should never store passwords in an accessible state (plain text or encrypted). See the disclaimer. One day I might make a Prisma middleware that does this the right way transparently. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi. I added a document to db with field
{ email: "hehe" }
, however this does not workconst user = await prisma.user.findUnique({ where: { email: "hehe" } });
Any clues?
Beta Was this translation helpful? Give feedback.
All reactions