tixlag
tixlag
Hi, I would still like to use `String[]` For example like this: ```schema.prisma model User { id Int @id @default(autoincrement()) countries String[] @default([]) } ``` ```typescript await prisma.user.findMany({ where: {...
Solved the problem like this (high performance for search): ```schema.prisma model User { id Int @id @default(autoincrement()) countries UserCountries[] @default([]) } model UserCountries{ id Int @id @default(autoincrement()) country String user...
Iam used primevue 4.0.7. The same problem
have the same