Neo Lambada
01/03/2022, 8:28 AMconst 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?
Neo Lambada
01/03/2022, 9:08 AM