Anand George
01/11/2022, 4:00 PMkyler
01/11/2022, 4:09 PMAnand George
01/11/2022, 4:12 PMkyler
01/11/2022, 4:18 PMAnand George
01/11/2022, 4:23 PMAnand George
01/11/2022, 4:26 PMFranco Roura
01/11/2022, 5:38 PMconst table = files[1] as 'users' | 'posts'
and prisma[table].create({ data: data as any })
Option 2 - With type safety
if (table === 'users') prisma.users.create({ etc })
Anand George
01/12/2022, 3:24 PM