Howdy :wave: , what is the opposite of `_some`? e....
# orm-help
h
Howdy šŸ‘‹ , what is the opposite of
_some
? e.g. this query returns all my projects
Copy code
await context.prisma.projects({
  where: {
    owners_some: { id: userId }
  }
})
I want the opposite now to return the projects I’m not associated it. I tried
owners_not
but with no luck. Thoughts?
c
owners_none?
h
yeah I tried that as well it returns an empty array but it should come with a few records
šŸ˜„
oh wait a minute
@carlo yeah bingo! It was alright, just forgot to run the seed again 🤦
thanks
c
np