teamUpdate
Updates a team and optionally replaces its assigned agents.
For example:
mutation TeamsUpdate($teamId: ID!, $name: String, $description: String, $agentIds: [String!]) {
teamsUpdate(input: { teamId: $teamId, name: $name, description: $description, agentIds: $agentIds }) {
team {
id
name
}
errors {
message
path
}
}
}
teamUpdate(
input: teamsUpdateInput!
): teamsUpdatePayload
Arguments
teamUpdate.input ● teamsUpdateInput! non-null input common
Parameters for teamsUpdate
Type
teamsUpdatePayload object common
Autogenerated return type of teamsUpdate