



Maximum bound parameters per query limit of 100 going to be increased eventually? Just ran into a bug with Prisma, because that affects basically every query with relations as soon as you have more than 100 rows in a table 




./functions API endpoints.Cannot find module '@prisma/client'. Did you mean to set the 'moduleResolution' option to 'nodenext', or to add aliases to the 'paths' option?ts(2792)npx wrangler devnpx wrangler pages dev .vercel/output/static --compatibility-flags="nodejs_compat" --port 8788npx wrangler pages dev but I think that makes no difference...wrangler.toml look?23:08:22.672 Using v2 root directory strategy
23:08:22.696 Success: Finished cloning repository files
23:08:24.728 wrangler.toml config file detected
23:08:25.838 Failed: an internal error occurred. If this continues, contact support: https://cfl.re/3WgEyrHThen configure the runtime types by creating a functions/tsconfig.json file:
functions/tsconfig.json
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"lib": ["esnext"],
"types": ["@cloudflare/workers-types"]
}
}
If you already have a tsconfig.json at the root of your project, you may wish to explicitly exclude the /functions directory to avoid conflicts. To exclude the /functions directory:
tsconfig.json
{
"include": ["src/**/*"],
"exclude": ["functions/**/*"],
"compilerOptions": {
}
}Cannot find module '@prisma/client'. Did you mean to set the 'moduleResolution' option to 'nodenext', or to add aliases to the 'paths' option?ts(2792)import { PrismaClient } from '@prisma/client';
import { PrismaD1 } from '@prisma/adapter-d1';
export const onRequestGet: PagesFunction<Env> = async (context) => {
const adapter = new PrismaD1(context.env.DB)
const prisma = new PrismaClient({ adapter })