got it ```await prisma.move.findMany({ where...
# orm-help
a
got it
Copy code
await prisma.move.findMany({
      where: {
        matchId,
        playerId: {
          in: players
        }
      },
    });
🙌 1
🚀 1