多个连接使用prisma nodejs



我正在尝试使用prism -node js编写一些连接。

where: {
Account: {
active: true,
},
User: {
UserNotificationsSetup: {
aaa: true,
},
UserNotificationsFrequencySetup: {
daily: true,
},
},
},
distinct: ['accountId'],
select: {
Account: {
select: {
networkId: true,
},
},
},
});

Prisma不喜欢UserNotificationsSetup:

Type '{aaa: true;}'不能赋值给类型'undefined'

您确定您的关系在您的prisma.schema中是正确的吗?

相关内容

  • 没有找到相关文章

最新更新