if i have something like `songs: [Song!]! @relatio...
# orm-help
t
if i have something like
songs: [Song!]! @relation(name: "ArtistOnSong", onDelete: SET_NULL)
in my data model, does the
[Song!]!
enforce that I must have at least one Song in an array type, or just an array type?
c
`[]!`enforces that `songs`cannot be
null
,
[..!]
enforces that the entries in the array cannot be
null
`songs: [] `is still possible
t
thanks!