Coach List

Get the Coaches List

Use the coaches query to list all the available coaches within the TeleWellness Portal.

Available Fields

Field

Type

Description

id

ID

Coach unique ID

name

String

Users name

email

String

Users email

isAdmin

String

users phone number

roles

Sting

Roles assigned to the coach

createdAt

DateTime

Date and time when the coach was created

updatedAt

DateTime

Date and time when the coach was updated

permissions

String

List of the coach permissions

Examples

Get the list of all coaches

{
  coaches {
    edges {
      node {
        id
        email
        name
        isAdmin
        roles
        createdAt
        updatedAt
        permissions
      }
    }
  }
}

Last updated