How can I select all Users which have 0 Posts?
# orm-help
e
How can I select all Users which have 0 Posts?
✔️ 1
Okay, I've created the view in my MySQL DB but prisma always returns empty array when I do findMany
r
Hey @Eden Lane 👋 This should fetch the Users with 0 Posts:
Copy code
await prisma.user.findMany({
  where: { posts: { none: {} } },
})
e
awesome, thanks!
💯 1