GraphQL - Basics and Philosophy
If a client sends a mutation to the GraphQL single endpoint to add a user:
mutation { addUser(name: "Anna") { id name } }What is the expected output?