CreateTeamPayload
The output of our create Team mutation.
type CreateTeamPayload {
clientMutationId: String
team: Team
query: Query
workspace: Workspace
createdByWorkspaceAccount: WorkspaceAccount
parentTeam: Team
teamEdge(
orderBy: [TeamsOrderBy!] = [PRIMARY_KEY_ASC]
): TeamsEdge
}
Fields
CreateTeamPayload.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.
CreateTeamPayload.team ● Team object
The Team that was created by this mutation.
CreateTeamPayload.query ● Query object
Our root query field type. Allows us to run any query from our mutation payload.
CreateTeamPayload.workspace ● Workspace object
Reads a single Workspace that is related to this Team.
CreateTeamPayload.createdByWorkspaceAccount ● WorkspaceAccount object
Reads a single WorkspaceAccount that is related to this Team.
CreateTeamPayload.parentTeam ● Team object
Reads a single Team that is related to this Team.
CreateTeamPayload.teamEdge ● TeamsEdge object
An edge for our Team. May be used by Relay 1.
CreateTeamPayload.teamEdge.orderBy ● [TeamsOrderBy!] list enum
The method to use when ordering Team.
Returned By
createTeam mutation