2023-06-28
Random
Wow
My favorite book is coming to Netflix ! ! !
const linkSummaries = await db.linkSummary.findMany({
where: {
OR: [{ body: '' }, { body: null }, { commentBody: '' }, { commentBody: null }],
},
take: 100,
})
Why is this giving rows full with body text?
It was because of the upsert
I was making!!!!