GraphQL - Mutations
Identify the error in this mutation:
Assuming the server expects the input argument to be named
mutation CreatePost($post: PostInput!) {
createPost(post: $post) {
id
content
}
}Assuming the server expects the input argument to be named
input, not post.