我无法将 where 子句应用于模型上的简单 count() 查询。如果我删除 where 子句,它就可以正常工作并返回该表中的行数。
好的:
let result = await prisma.articles.count()
坏的:
let result = await prisma.articles.count({ where: { article_id: 1 } })
错误:
Unknown arg `where` in select.count.where for type undefined. Did you mean `select`? Available args:
type count {
}
我使用架构中的哪一列都没有关系,同样的错误。我该如何解决这个问题?