Apollo GraphQL Mutation(Object Argument)

时间:2016-09-29 01:29:18

标签: graphql apollo-server apollostack

所以,我正在尝试设计我的Apollo服务器。我想创建一个以对象作为参数的变异。

以下是我的架构的片段,它以某种方式导致了问题:

enter image description here

我认为它在语法上是正确的,但我遇到了这个错误:

{“errors”:[{“message”:“预期输入类型。”}]}

1 个答案:

答案 0 :(得分:9)

您必须将INPUT_OBJECT声明为输入类型:

input INPUT_OBJECT {
  field1: String,
  # etc.
}