prisma.MyModel.upsert({
where: {
fieldOne_fieldTwo_fieldThree: {
fieldOne: 'one',
fieldTwo: 'two',
fieldThree: null, // this gives me a typeerror, claiming it must be a string. fieldThree is nullable, so it *should* be allowed!
}
}
})
prisma.MyModel.upsert({
where: {
fieldOne_fieldTwo_fieldThree: {
fieldOne: 'one',
fieldTwo: 'two',
fieldThree: null, // this gives me a typeerror, claiming it must be a string. fieldThree is nullable, so it *should* be allowed!
}
}
})