标签: graphql apollo graphql-js graphcool
我正在使用graph.cool和Apollo。这是下面的简化模式。我想在列表中添加一个int并计算一个新的平均值。
测试模型的GraphQL架构。如何将另一个int添加到list属性中?
type Test @model { id: ID! @isUnique list: [Int!] average: Int }