Update a Coach

Use the coachUpdate mutation to update the coach name, email or password within the TeleWellness Portal.

Available argument

UpdatePasswordInput object

Available Fields

Available Fields

The following fields will be displayed in the response:

Example

Update the coach name

mutation {
  coachUpdate(
    input: { id: "Q29hY2g6ODk2", name: "Liliana Elizabeth Iriarte Sanabria" }
  ) {
    success
    message
    coach {
      id
      email
      name
      isAdmin
      isDisabled
      createdAt
      updatedAt
    }
  }
}

Verify that the information was updated by accessing the My Account option:

Last updated