How can I do a query where I'm saying NOT for a fi...
# orm-help
e
How can I do a query where I'm saying NOT for a field with two values. For example, I want users without the name "Ethan" or "Jeff".
n
đź‘‹ @Ethan Zoller You are looking for
notIn
operator. It allows you to pass a list, the query would return you records which doesn’t have the values which you passed in list. Here is an example of it : notIn Prisma Client Reference