Existing Coach Teams

Use the coachTeams mutation query to list all of the available Coach Teams a coach can be assigned to.

Available argument

Argument Name

Is required?

Type

Description

filters.name

No

String

Name of the coach team to filter by.

Available Fields

The following fields will be displayed in the response:

Field Name

Type

Description

id

ID

Id of the coach team.

name

String

Name of the coach team.

description

String

Short description of the coach team.

coaches

List of coaches assigned to the team.

Example

query{
  coachTeams{
    edges{
      node{
        id
        name
        description
        coaches{
          id
          name
        }
      }
    }
  }
}

Last updated