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