humblecoder
07/06/2022, 1:45 AMPrisma 4.0.0
but for some reason where: { my_json_field: Prisma.DbNull } ,
still throws JsonNullableFilter
TS error. Any ideas on what I could be missing?Austin
07/06/2022, 6:28 PMPrisma.DbNull
?humblecoder
07/06/2022, 6:50 PMfindMany()
query. I actually ended up solving it with:
where: {
my_json_field: { equals: Prisma.DbNull },
}
. . . although, it would be nice if the docs were clearer on this. Currently there’s reference to data:{}
on JSON filters, which certainly is incorrect. 😆humblecoder
07/06/2022, 6:50 PM