GraphQL对模型的多个查询

时间:2017-09-13 07:00:53

标签: javascript python graphql

如果我有一个模型客户曾经有方法来获得客户余额(即import types if type(a) == types.IntType and type(b) == types.IntType and type(c) == types.IntType: .... .... ),最大信用(即getBalance()),订单数量(即maxCredit()) ,你会如何实现这样的场景?

1 个答案:

答案 0 :(得分:0)

考虑不同的访问方案,然后首先创建查询和突变。

对于你的情况,查询可能是这样的 query { customer(id: 1234) { balance maxcredit noOfOrders } } 现在相应地构建服务器。