Skip to main content

CreateWorkspacePayload

The output of our create Workspace mutation.

type CreateWorkspacePayload {
clientMutationId: String
workspace: Workspace
query: Query
workspaceEdge(
orderBy: [WorkspacesOrderBy!] = [PRIMARY_KEY_ASC]
): WorkspacesEdge
}

Fields

CreateWorkspacePayload.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.

CreateWorkspacePayload.workspace ● Workspace object

The Workspace that was created by this mutation.

CreateWorkspacePayload.query ● Query object

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

CreateWorkspacePayload.workspaceEdge ● WorkspacesEdge object

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

CreateWorkspacePayload.workspaceEdge.orderBy ● [WorkspacesOrderBy!] list enum

The method to use when ordering Workspace.

Returned By

createWorkspace mutation