Module graphql/query_listTeamsInOrg/listTeamsInOrgGenerated

Source

Type Aliases§

Source§

type ListTeamsInOrgResult = Data

Type alias for the successful result data from the list teams query.

remarks

This represents the data payload when the query executes successfully.

Variables§

Source§

const listTeamsInOrgQuery: string...

GraphQL query for listing teams in a GitHub organization.

remarks

This query retrieves all teams in a GitHub organization, including their metadata, associated projects V2, and repositories. Supports filtering teams and repositories by search queries.

example
query listTeamsInOrg($organizationLogin: String!, $repoQuery: String!, $teamQuery: String) {
organization(login: $organizationLogin) {
login,
teams(first: 100, query: $teamQuery) {
nodes { id, name, projectsV2(...), repositories(...) }
}
}
}

Classes§

Convert

Utility class for converting between JSON strings and typed objects.

Interfaces§

Data

Data payload interface for the list teams query.

Error

Error interface for GraphQL query errors.

ListTeamsInOrgRawResult

Raw result interface for the list teams query response.

Organization

Organization interface representing a GitHub organization.

ProjectV2

Project V2 interface representing a GitHub Project.

ProjectV2Connection

Connection interface for Project V2 nodes.

Repository

Repository interface representing a GitHub repository.

Team

Team interface representing a GitHub team.

TeamConnection

Connection interface for team nodes.

TeamRepositoryConnection

Connection interface for repository nodes.