RecoverStepPayload
The output of our recoverStep mutation.
type RecoverStepPayload {
clientMutationId: String
step: Step
query: Query
stage: Stage
ownerAccount: Account
ownerProfile: Profile
playbook: Playbook
createdBy: WorkspaceAccount
parentStep: Step
libraryStep: Step
stepEdge(
orderBy: [StepsOrderBy!] = [PRIMARY_KEY_ASC]
): StepsEdge
}
Fields
RecoverStepPayload.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.
RecoverStepPayload.step ● Step object
RecoverStepPayload.query ● Query object
Our root query field type. Allows us to run any query from our mutation payload.
RecoverStepPayload.stage ● Stage object
Reads a single Stage that is related to this Step.
RecoverStepPayload.ownerAccount ● Account object
Reads a single Account that is related to this Step.
RecoverStepPayload.ownerProfile ● Profile object
Reads a single Profile that is related to this Step.
RecoverStepPayload.playbook ● Playbook object
Reads a single Playbook that is related to this Step.
RecoverStepPayload.createdBy ● WorkspaceAccount object
Reads a single WorkspaceAccount that is related to this Step.
RecoverStepPayload.parentStep ● Step object
Reads a single Step that is related to this Step.
RecoverStepPayload.libraryStep ● Step object
Reads a single Step that is related to this Step.
RecoverStepPayload.stepEdge ● StepsEdge object
An edge for our Step. May be used by Relay 1.
RecoverStepPayload.stepEdge.orderBy ● [StepsOrderBy!] list enum
The method to use when ordering Step.
Returned By
recoverStep mutation