Skip to main content

CreateCustomReactionPayload

The output of our create CustomReaction mutation.

type CreateCustomReactionPayload {
clientMutationId: String
customReaction: CustomReaction
query: Query
workspace: Workspace
createdByWorkspaceAccount: WorkspaceAccount
customReactionEdge(
orderBy: [CustomReactionsOrderBy!] = [PRIMARY_KEY_ASC]
): CustomReactionsEdge
}

Fields

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

CreateCustomReactionPayload.customReaction ● CustomReaction object

The CustomReaction that was created by this mutation.

CreateCustomReactionPayload.query ● Query object

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

CreateCustomReactionPayload.workspace ● Workspace object

Reads a single Workspace that is related to this CustomReaction.

CreateCustomReactionPayload.createdByWorkspaceAccount ● WorkspaceAccount object

Reads a single WorkspaceAccount that is related to this CustomReaction.

CreateCustomReactionPayload.customReactionEdge ● CustomReactionsEdge object

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

CreateCustomReactionPayload.customReactionEdge.orderBy ● [CustomReactionsOrderBy!] list enum

The method to use when ordering CustomReaction.

Returned By

createCustomReaction mutation