Graphql mutations

From wikinotes

Mutations are operations with side-effects.

TODO:

this

Example

mutation MyMutation($user: User, $lastname: LastName!) {
  myMutation(user: $user, lastname: $lastname) {
    field_a
    field_b
  }
}