我想使用 NodeJS 在 GraphQL Mutation 中传递动态大小的 [{questionId1,value1},{questionId2,value2},{questionId3,value3}] 对象数组
.........
args: {
input: {
type: new GraphQLNonNull(new GraphQLInputObjectType({
name: 'AssessmentStep3Input',
fields: {
questionId:{
name:'Question ID',
type: new GraphQLNonNull(GraphQLID)
},
value:{
name:'Question Value',
type: new GraphQLNonNull(GraphQLBoolean)
}
}
}))
}
},
.........
如何使用给定的代码示例来做到这一点?
谢谢