```const user = await prisma.user.findMany({ ...
# orm-help
n
Copy code
const user = await prisma.user.findMany({
          where: {
            id: 46,
          },
          include: {
            followers: true,
          },
          take: args.limit || undefined,
          skip: args.offset || undefined,
        })  This gives me the user with his followers as an array. can all the followers for a given user be retrieved?
in simple terms i would like to get array which contains all the users who’s been followed by user 46