teamCreate
Creates a team and optionally assigns agents to it.
For example:
mutation TeamsCreate($name: String!, $description: String, $agentIds: [ID!]) {
teamsCreate(input: { name: $name, description: $description, agentIds: $agentIds }) {
team {
id
name
}
errors {
message
path
}
}
}
teamCreate(
input: teamsCreateInput!
): teamsCreatePayload
Arguments
teamCreate.input ● teamsCreateInput! non-null input common
Parameters for teamsCreate
Type
teamsCreatePayload object common
Autogenerated return type of teamsCreate