Skip to main content

Team

No description

type Team implements Node {
nodeId: ID!
id: String!
name: String!
parentTeamId: String
version: Int!
createdByWorkspaceAccountId: String
workspaceId: String
deletedAt: Datetime
updatedAt: Datetime!
createdAt: Datetime!
workspace: Workspace
createdByWorkspaceAccount: WorkspaceAccount
parentTeam: Team
customViewTeamsConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [CustomViewTeamsOrderBy!] = [PRIMARY_KEY_ASC]
condition: CustomViewTeamCondition
filter: CustomViewTeamFilter
): CustomViewTeamsConnection!
customViewTeams(
first: Int
offset: Int
orderBy: [CustomViewTeamsOrderBy!]
condition: CustomViewTeamCondition
filter: CustomViewTeamFilter
): [CustomViewTeam!]!
teamsByParentTeamIdConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [TeamsOrderBy!] = [PRIMARY_KEY_ASC]
condition: TeamCondition
filter: TeamFilter
): TeamsConnection!
teamsByParentTeamId(
first: Int
offset: Int
orderBy: [TeamsOrderBy!]
condition: TeamCondition
filter: TeamFilter
): [Team!]!
teamMembersConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [TeamMembersOrderBy!] = [PRIMARY_KEY_ASC]
condition: TeamMemberCondition
filter: TeamMemberFilter
): TeamMembersConnection!
teamMembers(
first: Int
offset: Int
orderBy: [TeamMembersOrderBy!]
condition: TeamMemberCondition
filter: TeamMemberFilter
): [TeamMember!]!
}

Fields

Team.nodeId ● ID! non-null scalar

A globally unique identifier. Can be used in various places throughout the system to identify this single value.

Team.id ● String! non-null scalar

Team.name ● String! non-null scalar

Team.parentTeamId ● String scalar

Team.version ● Int! non-null scalar

Team.createdByWorkspaceAccountId ● String scalar

Team.workspaceId ● String scalar

Team.deletedAt ● Datetime scalar

Team.updatedAt ● Datetime! non-null scalar

Team.createdAt ● Datetime! non-null scalar

Team.workspace ● Workspace object

Reads a single Workspace that is related to this Team.

Team.createdByWorkspaceAccount ● WorkspaceAccount object

Reads a single WorkspaceAccount that is related to this Team.

Team.parentTeam ● Team object

Reads a single Team that is related to this Team.

Team.customViewTeamsConnection ● CustomViewTeamsConnection! non-null object

Reads and enables pagination through a set of CustomViewTeam.

Team.customViewTeamsConnection.first ● Int scalar

Only read the first n values of the set.

Team.customViewTeamsConnection.last ● Int scalar

Only read the last n values of the set.

Team.customViewTeamsConnection.offset ● Int scalar

Skip the first n values from our after cursor, an alternative to cursor based pagination. May not be used with last.

Team.customViewTeamsConnection.before ● Cursor scalar

Read all values in the set before (above) this cursor.

Team.customViewTeamsConnection.after ● Cursor scalar

Read all values in the set after (below) this cursor.

Team.customViewTeamsConnection.orderBy ● [CustomViewTeamsOrderBy!] list enum

The method to use when ordering CustomViewTeam.

Team.customViewTeamsConnection.condition ● CustomViewTeamCondition input

A condition to be used in determining which values should be returned by the collection.

Team.customViewTeamsConnection.filter ● CustomViewTeamFilter input

A filter to be used in determining which values should be returned by the collection.

Team.customViewTeams ● [CustomViewTeam!]! non-null object

Reads and enables pagination through a set of CustomViewTeam.

Team.customViewTeams.first ● Int scalar

Only read the first n values of the set.

Team.customViewTeams.offset ● Int scalar

Skip the first n values.

Team.customViewTeams.orderBy ● [CustomViewTeamsOrderBy!] list enum

The method to use when ordering CustomViewTeam.

Team.customViewTeams.condition ● CustomViewTeamCondition input

A condition to be used in determining which values should be returned by the collection.

Team.customViewTeams.filter ● CustomViewTeamFilter input

A filter to be used in determining which values should be returned by the collection.

Team.teamsByParentTeamIdConnection ● TeamsConnection! non-null object

Reads and enables pagination through a set of Team.

Team.teamsByParentTeamIdConnection.first ● Int scalar

Only read the first n values of the set.

Team.teamsByParentTeamIdConnection.last ● Int scalar

Only read the last n values of the set.

Team.teamsByParentTeamIdConnection.offset ● Int scalar

Skip the first n values from our after cursor, an alternative to cursor based pagination. May not be used with last.

Team.teamsByParentTeamIdConnection.before ● Cursor scalar

Read all values in the set before (above) this cursor.

Team.teamsByParentTeamIdConnection.after ● Cursor scalar

Read all values in the set after (below) this cursor.

Team.teamsByParentTeamIdConnection.orderBy ● [TeamsOrderBy!] list enum

The method to use when ordering Team.

Team.teamsByParentTeamIdConnection.condition ● TeamCondition input

A condition to be used in determining which values should be returned by the collection.

Team.teamsByParentTeamIdConnection.filter ● TeamFilter input

A filter to be used in determining which values should be returned by the collection.

Team.teamsByParentTeamId ● [Team!]! non-null object

Reads and enables pagination through a set of Team.

Team.teamsByParentTeamId.first ● Int scalar

Only read the first n values of the set.

Team.teamsByParentTeamId.offset ● Int scalar

Skip the first n values.

Team.teamsByParentTeamId.orderBy ● [TeamsOrderBy!] list enum

The method to use when ordering Team.

Team.teamsByParentTeamId.condition ● TeamCondition input

A condition to be used in determining which values should be returned by the collection.

Team.teamsByParentTeamId.filter ● TeamFilter input

A filter to be used in determining which values should be returned by the collection.

Team.teamMembersConnection ● TeamMembersConnection! non-null object

Reads and enables pagination through a set of TeamMember.

Team.teamMembersConnection.first ● Int scalar

Only read the first n values of the set.

Team.teamMembersConnection.last ● Int scalar

Only read the last n values of the set.

Team.teamMembersConnection.offset ● Int scalar

Skip the first n values from our after cursor, an alternative to cursor based pagination. May not be used with last.

Team.teamMembersConnection.before ● Cursor scalar

Read all values in the set before (above) this cursor.

Team.teamMembersConnection.after ● Cursor scalar

Read all values in the set after (below) this cursor.

Team.teamMembersConnection.orderBy ● [TeamMembersOrderBy!] list enum

The method to use when ordering TeamMember.

Team.teamMembersConnection.condition ● TeamMemberCondition input

A condition to be used in determining which values should be returned by the collection.

Team.teamMembersConnection.filter ● TeamMemberFilter input

A filter to be used in determining which values should be returned by the collection.

Team.teamMembers ● [TeamMember!]! non-null object

Reads and enables pagination through a set of TeamMember.

Team.teamMembers.first ● Int scalar

Only read the first n values of the set.

Team.teamMembers.offset ● Int scalar

Skip the first n values.

Team.teamMembers.orderBy ● [TeamMembersOrderBy!] list enum

The method to use when ordering TeamMember.

Team.teamMembers.condition ● TeamMemberCondition input

A condition to be used in determining which values should be returned by the collection.

Team.teamMembers.filter ● TeamMemberFilter input

A filter to be used in determining which values should be returned by the collection.

Interfaces

Node interface

An object with a globally unique ID.

Returned By

team query ● teamByNodeId query ● teamByWorkspaceIdAndName query ● teams query

Member Of

CreateCustomViewTeamPayload object ● CreateTeamMemberPayload object ● CreateTeamPayload object ● CustomViewTeam object ● DeleteCustomViewTeamPayload object ● DeleteTeamMemberPayload object ● DeleteTeamPayload object ● Team object ● TeamMember object ● TeamsConnection object ● TeamsEdge object ● UpdateCustomViewTeamPayload object ● UpdateTeamMemberPayload object ● UpdateTeamPayload object ● UpsertCustomViewTeamPayload object ● UpsertTeamMemberPayload object ● UpsertTeamPayload object ● Workspace object ● WorkspaceAccount object