CreateTeamInput
Create a team in an app.
input CreateTeamInput {
appId: BigInt!
name: String!
description: String
membershipPolicy: String
}
Fields
CreateTeamInput.appId ● BigInt! non-null scalar
The app (tenant) the team belongs to.
CreateTeamInput.name ● String! non-null scalar
Display name for the team (max 128 chars; unique per app+type).
CreateTeamInput.description ● String scalar
Optional free-text description of the team.
CreateTeamInput.membershipPolicy ● String scalar
open | request | invite | admin. Defaults to the app policy.
Member Of
createTeam mutation