When using this library with NestJs, this error occurs:
class UsersRepository {
constructor(private readonly prisma: PrismaService) {}
findMany() {
return this.prisma.users.paginate(); // "The property 'paginate' does not exist on type 'UserDelegate'."
}
}
When using this library with NestJs, this error occurs: