Difference between where in Prisma

Hello, is there a difference between this beside how you write it?

await prisma.user.count({
  where: {
    post: { // between this
      id: postId
    }
    post_id: postId // and this
  }
})
Was this page helpful?