mutation createAuthor (
$name: String!
){
  createAuthor (
    name: $name
  ) {
    name id
  }
}
