a big mongo release 3.10.0 is out, GA getting clos...
# mongodb
j
a big mongo release 3.10.0 is out, GA getting closer and closer...
prisma rainbow 4
🙌 4
🙌🏿 1
p
very excited about this one. great work Prisma team
j
please test it and file issues
p
100% will be
n
m
I think this is probably me, but I just tried the example from the post
Copy code
model Product {
  id     String  @id @default(auto()) @map("_id") @db.ObjectId
  name   String
  photos Photo[]
}

type Photo {
  height Int
  width  Int
  url    String
}
And I am getting this error message
Unknown type "Photo".
Any ideas?
Nevermind!.. Just realised its another process thats throwing the error… carry on
j
will do ;)
btw. the
db pull
also understands nested objects now (or the feature was turned on by default), try it out!
🔥 1