i trying something like ```(filter: { user_not...
# prisma-whats-new
m
i trying something like
Copy code
(filter: {
    user_not: user
  })
but of course it doesn't work
h
Try
user{id_not: $userID}
d
note that $userID is not something automatic, you have to pass it from your app ... https://github.com/graphcool/graphcool/issues/355