0
如何創建帖子和作者,而作者沒有必填字段?如何在GraphQL中爲空子項創建嵌套變異
喜歡的東西:
mutation {
createPost(
text: "This is a post!"
author: {
// ???
}
) {
id
author {
id
}
}
}
如何創建帖子和作者,而作者沒有必填字段?如何在GraphQL中爲空子項創建嵌套變異
喜歡的東西:
mutation {
createPost(
text: "This is a post!"
author: {
// ???
}
) {
id
author {
id
}
}
}
您可以打開nested mutation各地:
mutation {
createUser(posts: [{
text: "This is a post!"
}]) {
id
}
}
我以爲這是一個一個一對多關係和領域被稱爲posts
。