Skip to main content

DeleteTeamPayload

The output of our delete Team mutation.

type DeleteTeamPayload {
clientMutationId: String
team: Team
deletedTeamNodeId: ID
query: Query
workspace: Workspace
createdByWorkspaceAccount: WorkspaceAccount
parentTeam: Team
teamEdge(
orderBy: [TeamsOrderBy!] = [PRIMARY_KEY_ASC]
): TeamsEdge
}

Fields

DeleteTeamPayload.clientMutationId ● String scalar

The exact same clientMutationId that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.

DeleteTeamPayload.team ● Team object

The Team that was deleted by this mutation.

DeleteTeamPayload.deletedTeamNodeId ● ID scalar

DeleteTeamPayload.query ● Query object

Our root query field type. Allows us to run any query from our mutation payload.

DeleteTeamPayload.workspace ● Workspace object

Reads a single Workspace that is related to this Team.

DeleteTeamPayload.createdByWorkspaceAccount ● WorkspaceAccount object

Reads a single WorkspaceAccount that is related to this Team.

DeleteTeamPayload.parentTeam ● Team object

Reads a single Team that is related to this Team.

DeleteTeamPayload.teamEdge ● TeamsEdge object

An edge for our Team. May be used by Relay 1.

DeleteTeamPayload.teamEdge.orderBy ● [TeamsOrderBy!] list enum

The method to use when ordering Team.

Returned By

deleteTeam mutation ● deleteTeamByNodeId mutation ● deleteTeamByWorkspaceIdAndName mutation