Salvador Lopez Mendoza
10/28/2021, 5:15 PMin in the where clause of a query where the column data type is a string which values are like 1,2? Like prisma.model.findMany({ where: { col: { in: [1, 2] } } })Ryan
10/29/2021, 6:51 AMin is for total separate values and not for values inside the same string. For that, you might want to look into Full Text Search.Salvador Lopez Mendoza
10/29/2021, 2:04 PM