Maybe I am just not searching for the right thing ...
# prisma-whats-new
m
Maybe I am just not searching for the right thing because I think this must exist. Is there a way to filter out specific values from a query? For example if I want to not see a specific value. Per say: firstName=“Mark”. In SQL it would look something like this SELECT * FROM Users WHERE firstName != “Mark”
j
Copy code
allUsers(filter: { firstName_not: 'Mark' }) { id }
👍🏻 3
Something like that
m
much appreciated!
very logical solution. Loving graphql