Hi, I have a question about nested creates. Lets ...
# orm-help
o
Hi, I have a question about nested creates. Lets say I have 3 objects defined like that:
Copy code
model A {
 id Int @id
 b B[]
}
model B {
 id Int @id
 c C[]
}
model C {
 id Int @id
 text String
}