Darryl Morley
07/01/2022, 3:48 AM{
Manufacturer: {
path: ["manufacturerID"],
not: { in: ["28", "266", "213", "234"] },
},
},
Tasin Ishmam
07/01/2022, 6:24 AMnotIn
operator that might be what you’re looking for: https://www.prisma.io/docs/reference/api-reference/prisma-client-reference#notin
Is this possible on a JSON field?Not possible to the best of my knowledge. JSON filtering only supports
array_contains
, not the inverse ( something like array_does_not_contain
)