OBJECT
Team
A team of users in an organization.
link GraphQL Schema definition
- type Team implements Node, UniformResourceLocatable {
- # The description of the team.
- String :
- # The HTTP path for editing this team
- URI! :
- # The HTTP url for editing this team
- URI! :
- 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.
- Int, : String, : Int, : String): OrganizationInvitationConnection ( :
- # The name of the team.
- String! :
- # The path to this resource.
- URI! :
- # The level of privacy the team has.
- TeamPrivacy! :
- # The slug corresponding to the team.
- String! :
- # The HTTP path for this team
- URI! :
- # The HTTP path for this team's repositories
- URI! :
- # The HTTP url for this team's repositories
- URI! :
- # The HTTP url for this team
- URI! :
- # The URL to this resource.
- URI! :
- }