如果我有一个模型客户曾经有方法来获得客户余额(即import types
if type(a) == types.IntType and type(b) == types.IntType and type(c) == types.IntType:
....
....
),最大信用(即getBalance()
),订单数量(即maxCredit()
) ,你会如何实现这样的场景?
答案 0 :(得分:0)
考虑不同的访问方案,然后首先创建查询和突变。
对于你的情况,查询可能是这样的
query { customer(id: 1234) { balance maxcredit noOfOrders } }
现在相应地构建服务器。