GraphQL - Mutations
Consider this mutation:
If the user with id "42" does not exist, what will happen?
mutation { updateProfile(id: "42", input: {email: "new@example.com"}) { id email } }If the user with id "42" does not exist, what will happen?
