棱镜:在变异解析器中使用计数

时间:2019-01-19 14:40:25

标签: node.js graphql graphql-js prisma-graphql

我有一个突变createPet,如果用户已经创建了5只宠物,我希望它引发错误。 我当时以为这样的事情会起作用,但不会:

  const petsCount = await db.pets({
    where: { owner: user.id },
  }).count();

我也没有在文档中找到任何东西

1 个答案:

答案 0 :(得分:0)

要检索计数,可以使用“聚合”:

const petsCount = await prisma
  .petsConnection({where: {owner: user.id}})
  .aggregate()
  .count()

来源:documentation