我有这个数据模型:
type Item {
id: ID! @unique
title: String!
description: String!
user: User!
pictures: [Picture]
basePrice: Int!
addons: [Addon]
}
我正在编写一个名为parsedItem的查询,该查询从参数中获取ID并查找Item(使用Prisma生成的Item的默认查询),如下所示:
const where = { id: args.id };
const item = await ctx.db.query.item({ where },
`{
id
title
...
我需要在前端显示一个计算值:“ dynamicPrice”,它取决于Item拥有的附加组件的数量。 例如: 项#1具有3个附加组件,每个附加组件的价值为$ 5。此计算值应为
dynamicPrice = basePrice + 3 * 5
Addon关系可能会改变,因此我需要在前端发出的每个请求中都对此进行计算。
我非常想做类似的事情:
item.dynamicPrice = item.basePrice + (item.addons.length * 5)
并在解析器中返回此项目,但这不起作用。那抛出一个错误:
“ message”:“无法查询类型\” Item \“的字段\” dynamicPrice \“。 (当我尝试从前端查询商品时)
此错误消息使我想到:是否应该将dynamicPrice创建为数据模型上的字段?然后可以在查询解析器中填充此字段吗?我知道我可以,但这是一个好方法吗?
这是一个示例,我需要为此Item模型创建更多计算值。
在此简单用例中,最佳的可扩展解决方案/解决方案是什么?
答案 0 :(得分:1)
您需要为dynamicPrice
类型的Item
字段创建字段解析器。看起来像这样:
const resolvers = {
Query: {
parsedItem: (parent, args, ctx, info) => {
...
}
...
},
Item: {
dynamicPrice: parent => parent.basePrice + parent.addons.length * 5
}
}
您可以在A Guide to Common Resolver Patterns上找到更多详细信息。