We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Loving the tool, thank you! I'd like to know if you've covered MongoDB and Prisma.
It supports embedded document syntax which would be handy to have mapped.
model User { id String @id @default(auto()) @map("_id") @db.ObjectId email String @unique name String? address Address? 👈 posts Post[] } // Address is an embedded document type Address { street String city String state String zip String }
The text was updated successfully, but these errors were encountered:
I've not used MongoDB through Prisma.
Can you give me a reproducible prisma schame file?
Also, how should I express the nested type in the document?
MongoDB is not relational database, so wonder whether that ERD is meaningful for the NoSQL MongoDB
Sorry, something went wrong.
samchon
No branches or pull requests
Loving the tool, thank you!
I'd like to know if you've covered MongoDB and Prisma.
It supports embedded document syntax which would be handy to have mapped.
The text was updated successfully, but these errors were encountered: