我有一个突变createPet
,如果用户已经创建了5只宠物,我希望它引发错误。
我当时以为这样的事情会起作用,但不会:
const petsCount = await db.pets({
where: { owner: user.id },
}).count();
我也没有在文档中找到任何东西
答案 0 :(得分:0)
要检索计数,可以使用“聚合”:
const petsCount = await prisma
.petsConnection({where: {owner: user.id}})
.aggregate()
.count()