Tyler Clendenin
08/21/2022, 2:46 AMwhere id IN (${Prisma.join(ids)})
where the id is a uuid, I get the error
Raw query failed. Code: `42883`. Message: `db error: ERROR: operator does not exist: uuid = text
what do I need to do to cast those correctly?William GM
08/21/2022, 2:50 AM''
single quotes?
where id IN ('${Prisma.join(ids)}')
Tyler Clendenin
08/21/2022, 3:22 AMwhere id IN ('uuid1', 'uuid2', 'uuid3')
where the above would do where id IN ('uuid1,uuid2,uuid3')
Nurul
08/30/2022, 11:49 AM