I am trying to understand [ ] modifier. I got some...
# orm-help
j
I am trying to understand [] modifier. I got something like:
Copy code
model BaseVariable {
  options String[]
}
What is odd is that prisma.baseVariable.create doesn't require me to fill the options argument, so I got baseVariables with options set to null in my postgresdb. But! if I try to assign null to options in prisma.baseVariable.create I get a type error.
r