OBJECT

Team

A team of users in an organization.

link GraphQL Schema definition

  • type Team implements Node, UniformResourceLocatable {
  • # The description of the team.
  • description: String
  • # The HTTP path for editing this team
  • editTeamPath: URI!
  • # The HTTP url for editing this team
  • editTeamUrl: URI!
  • id: ID!
  • # A list of pending invitations for users to this team
  • #
  • # Arguments
  • # first: Returns the first _n_ elements from the list.
  • # after: Returns the elements in the list that come after the
  • # specified global ID.
  • # last: Returns the last _n_ elements from the list.
  • # before: Returns the elements in the list that come before the
  • # specified global ID.
  • invitations(first: Int, after: String, last: Int, before: String): OrganizationInvitationConnection
  • # The name of the team.
  • name: String!
  • # The path to this resource.
  • path: URI!
  • # The level of privacy the team has.
  • privacy: TeamPrivacy!
  • # The slug corresponding to the team.
  • slug: String!
  • # The HTTP path for this team
  • teamPath: URI!
  • # The HTTP path for this team's repositories
  • teamRepositoriesPath: URI!
  • # The HTTP url for this team's repositories
  • teamRepositoriesUrl: URI!
  • # The HTTP url for this team
  • teamUrl: URI!
  • # The URL to this resource.
  • url: URI!
  • }