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
joar
11/07/2017, 8:28 PM
Copy code
allUsers(filter: { firstName_not: 'Mark' }) { id }