```type Collection { id: ID! @unique title: St...
# orm-help
d
Copy code
type Collection {
  id: ID! @unique
  title: String!
  published: Boolean! @default(value: "false")
  owner: User!
}
just figured it out “List fields cannot have defaultValues”
e
Given the type declaration
[T!]!
, I would be surprised if the default is anything other than an empty list.