Docs
Join the conversation
Join Slack
Channels
graphql-nexus
job-board
madewithprisma
mongodb
new-channel
new-channel
new-channel
new-channel
new-channel
orm-help
prisma-client
prisma-data-platform
prisma-go-community
prisma-in-production
prisma-jobs
prisma-migrate
prisma-studio
prisma-whats-new
prisma1-community
prismaday
prismaserverless
product-wishlist
random
Powered by Linen
Channels
graphql-nexus
job-board
madewithprisma
mongodb
new-channel
new-channel
new-channel
new-channel
new-channel
orm-help
prisma-client
prisma-data-platform
prisma-go-community
prisma-in-production
prisma-jobs
prisma-migrate
prisma-studio
prisma-whats-new
prisma1-community
prismaday
prismaserverless
product-wishlist
random
Title
d
delgermurun
06/20/2017, 11:22 AM
Hello, Can I define array of nested objects in Schema? Something like
books: [{name: String}]
I don't want separated collection (in DB), just embedded list in object.
a
agartha
06/20/2017, 11:29 AM
@delgermurun
Well, you could do
books: [Json!]
. Just be aware of the size restrictions of that field
d
delgermurun
06/20/2017, 11:31 AM
Thanks