When I deployed my converted schema from GC to Pri...
# orm-help
j
When I deployed my converted schema from GC to Prisma I got this error:
Copy code
Valid values for the strategy argument of `@scalarList` are: RELATION
So I added
Copy code
@scalarList(strategy: RELATION)
and it worked. But when I inspect my DB I see that the related table is empty after import from GC where there are values for this field. What happens is that for MyTable with myField: [String!] @scalarList(strategy: RELATION) another table is created with name: MyTable_myField with columns: nodeId, position, value. I got 4 different tables with this structure and all are empty after import. Any ideas on how I could fix this?