Get Organization Teams Result
data class GetOrganizationTeamsResult(val id: String, val resultsPerPage: Int? = null, val rootTeamsOnly: Boolean? = null, val summaryOnly: Boolean? = null, val teams: List<GetOrganizationTeamsTeam>)
A collection of values returned by getOrganizationTeams.
Properties
Link copied to clipboard
(Optional) Set the number of results per graphql query. Reducing this number can alleviate timeout errors. Accepts a value between 0 - 100. Defaults to 100.
Link copied to clipboard
(Optional) Only return teams that are at the organization's root, i.e. no nested teams. Defaults to false.
Link copied to clipboard
(Optional) Exclude the members and repositories of the team from the returned result. Defaults to false.
Link copied to clipboard
(Required) An Array of GitHub Teams. Each team block consists of the fields documented below.