Figured it out myself, a nested `OR` with the id a...
# prisma-whats-new
m
Figured it out myself, a nested
OR
with the id array does the trick. I did not realize that OR is an
UserWhereInput
type. Nice design!
Copy code
const group = await ctx.db.query.groups(
      {
        where:{
          users_every: {OR: users}
        }
      },
      info,
    )
👍 1