Skip to content
New issue

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

Support type block in schema #20

Open
x-ray-s opened this issue Aug 6, 2022 · 0 comments
Open

Support type block in schema #20

x-ray-s opened this issue Aug 6, 2022 · 0 comments

Comments

@x-ray-s
Copy link

x-ray-s commented Aug 6, 2022

in schema.prisma

model Product {
  id     String  @id @default(auto()) @map("_id") @db.ObjectId
  name   String
  photos Photo[]
}

type Photo {
  height Int
  width  Int
  url    String
}

When Prisma data source is Mongodb, this schema will be warned that "Unhandled type: Photo".

docs ref

I think this lib needs support type in schema.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant