generated at
GraphQLのMutations型
Put/Post/Delete
GraphQL Schemaと同じsyntaxで書く
type Mutation {..} という形式で定義する

Mutation
type Mutation { bookTrips(launchIds: [ID]!): TripUpdateResponse! cancelTrip(launchId: ID!): TripUpdateResponse! login(email: String): User }