prisma é e não é
const users = await prisma.post.findMany({
where: {
author: {
isNot: {
name: "Bob"
},
is: {
age: {
gt: 40
}
}
}
}
},
})
Puzzled Puffin