GraphQL - Mutations
Given this mutation:
What will be the output if the post with ID 5 exists and has content "Old content"?
mutation { updatePost(id: "5", input: {title: "New Title"}) { id title content } }What will be the output if the post with ID 5 exists and has content "Old content"?
