GraphQL - Mutations
Consider this mutation to add a new post:
mutation { addPost(title: "Hello", content: "World") { id title } } How can you ensure the mutation does not overwrite existing posts with the same title?