Mutations are operations sent to the server to create, update or delete data. Those familiar with REST-based communication verbs would associate these with the `PUT`, `POST`, `PATCH` and `DELETE` methods.
* Mutations are the main entry point to make updates to the data backing Queries
* Here is what one looks like coming from the client
* Input types are passed to Apollo Server and inform it how to make the update
* The fields describe the object that is returned by a mutation, often times the object that was created or the entire collection that was modified. Or a confirmation of deletion