Skip to main content

CareTeam

A care team is a group of employees and clients, taken into account when calculating the tour plan

type CareTeam {
clientCount: Int!
clients: [Client!]
employeeCount: Int!
employees: [Employee!]
id: CareTeamID!
name: String!
}

Fields

CareTeam.clientCount ● Int! non-null scalar

Number of clients assigned to this care team

CareTeam.clients ● [Client!] list object

All clients assigned to this care team

CareTeam.employeeCount ● Int! non-null scalar

Number of employees assigned to this care team

CareTeam.employees ● [Employee!] list object

All employees assigned to this care team

CareTeam.id ● CareTeamID! non-null scalar

Unique identifier

CareTeam.name ● String! non-null scalar

Name of the care team

Returned By

createCareTeam mutation ● updateCareTeam mutation

Member Of

Client object ● Employee object ● ResidentialPark object