如果作者没有必填字段,我将如何创建帖子和作者?
类似的东西:
mutation {
createPost(
text: "This is a post!"
author: {
// ???
}
) {
id
author {
id
}
}
}
答案 0 :(得分:0)
您可以转动nested mutation:
mutation {
createUser(posts: [{
text: "This is a post!"
}]) {
id
}
}
我认为它是一对多关系,字段名为posts
。