如何在GraphQL中使用空子项创建嵌套变异

时间:2017-04-24 16:05:52

标签: graphql

如果作者没有必填字段,我将如何创建帖子和作者?

类似的东西:

mutation {
  createPost(
    text: "This is a post!"
    author: {
      // ???
    }
  ) {
    id
    author {
      id
    }
  }
}

1 个答案:

答案 0 :(得分:0)

您可以转动nested mutation

mutation {
  createUser(posts: [{
    text: "This is a post!"
  }]) {
    id
  }
}

我认为它是一对多关系,字段名为posts