Hi, how can I set an empty array as default value ...
# orm-help
d
Hi, how can I set an empty array as default value for a type in my datamodel ? The following example is not working:
Copy code
type User {
  id: ID! @unique
  email: String @unique
  name: String!
  imageUrl: String
  collections: [Collection!]! @default(value: "[]")
}