Expand description

Team interface representing a GitHub team.

remarks

Contains team metadata, associated projects, and repositories.

interface Team {
    id: string;
    name: string;
    projectsV2: ProjectV2Connection;
    repositories: TeamRepositoryConnection;
}

Properties§

§id: string

The unique identifier of the team

§name: string

The name of the team

§projectsV2: ProjectV2Connection

The connection to Project V2 items associated with this team

§repositories: TeamRepositoryConnection

The connection to repositories that this team manages