Converting a query to use TypedSQL
How would I be able to convert this to a TypedSQL query?
prisma.$transaction(data.map((match) => {
return prisma.match.update({
where: {
matchId: match.id,
},
data: {
fixtureData: match as unknown as InputJsonValue,
dateOfDay: match.date,
}
});
})