Team
A team of users
type Team {
id: ID!
name: String!
members(
after: String
before: String
first: Int
last: Int
): UserConnection!
role: Role!
}
Fields
Team.id ● ID! non-null scalar
A unique identifier that identifies a specific team.
Team.name ● String! non-null scalar
The name of the team.
Team.members ● UserConnection! non-null object
The accounts that belogn to this team.
Team.members.after ● String scalar
Returns the elements in the list that come after the specified cursor.
Team.members.before ● String scalar
Returns the elements in the list that come before the specified cursor.
Team.members.first ● Int scalar
Returns the first _n_ elements from the list.
Team.members.last ● Int scalar
Returns the last _n_ elements from the list.
Team.role ● Role! non-null enum
Returned By
addTeamMembers mutation ● removeTeamMembers mutation
Member Of
CloudKeystore object ● CloudProvider object ● NotificationEmailRecipientsLists object ● ServiceAccount object ● TeamConnection object ● TeamEdge object ● User object
Implemented By
HumanIdentity union ● Identity union