Hello, Can I define array of nested objects in Sch...
# prisma-whats-new
d
Hello, Can I define array of nested objects in Schema? Something like
Copy code
books: [{name: String}]
I don't want separated collection (in DB), just embedded list in object.
a
@delgermurun Well, you could do
books: [Json!]
. Just be aware of the size restrictions of that field
d
Thanks