Need to clarify where to import Prisma from
node_modules. So I always imported everything from @prisma/client.
But now since the Prisma Client is generated in a custom path outside node_modules I should be importing it like this right? I am using Next.js and according to this page I create the Prisma Client instance like below. This is the correct way right? Instead of importing the PrismaClient from @prisma/client like we did in the past now I import it from the generated output?
```ts
import { PrismaClient } from "../generated/prisma"...Prisma generate error
Error: Could not resolve @prisma/client despite the installation that we just tried. Please try to install it by hand with npm i @prisma/client and rerun npx "prisma generate"🙏. ...
Question about Prisma Migrations and "public" Schema

Errors with transaction
Rust-free ORM still download engine binary
Embedded studio question
Can't connect Prisma Accelerate to MySQL on Railway

prisma skips environment variable loading with config file?
Prisma Accelerate’s Ghost Cache: Refusing to Drop UUID+Email for Int+Username
Generated Prisma Client
How to use connect with relations in Prisma (normal case explained)

Error validating datasource `db`: the URL must start with the protocol `prisma://` or `prisma+postgr
Migrate to Prisma Postgres
How do I setup different database environments using the Vercel integration
Error "@prisma/client did not initialize yet." in Nuxt 4
'@prisma/client did not initialize yet. Please run "prisma generate" and try to import it again.\n'
'@prisma/client did not initialize yet. Please run "prisma generate" and try to import it again.\n'

My Prisma client 6.3.1 is started failing to build, anything related to new release?
Tiberius integrated authentication broken on Unix platforms with libgssapi
Cannot seed or pg_restore prisma-postgres db
prisma seed against it as I get "Permission denied for Table xyz" error, and when trying to import a backup from my previous local postgres DB via tunnel I get errors "Table/Function" etc already exists".
What am I missing? I followed all steps on the dashboard, just wanna see if the paid solution is any good with deep nested includes, wher the ORM for a locally hosted DB fails. I also get all sorts of errors in the UI for console.prisma.io...Get an omitted field back for one query
password field for the User model will always be omitted. However, on authentication, I want #findFirst to return all of it's fields including the password. I know I can achieve that by just select:'ing all fields and the password, but is there a way to not hardcode that?So that the following does return the whole
User object instead of just the password or null?
```typescript
const user = await this.prismaService.user.findFirst({ ...