Skip to main content
Version: 0.1.0

BlueprintDriverWorkflow

CAUTION: Experimental!

Provides a similar interface to the ProjectV3Workflow type.

type BlueprintDriverWorkflow {
id: UUID!
status: ProjectV3WorkflowStatus!
stepActions: [BlueprintDriverWorkflowStepAction!]! @deprecated
jobs: [BlueprintDriverActionExecution!] @deprecated
steps: [BlueprintDriverWorkflowStep!]!
createdAt: Time!
updatedAt: Time!
}

Fields

BlueprintDriverWorkflow.id ● UUID! non-null scalar

BlueprintDriverWorkflow.status ● ProjectV3WorkflowStatus! non-null enum

BlueprintDriverWorkflow.stepActions ● [BlueprintDriverWorkflowStepAction!]! deprecated non-null enum

DEPRECATED

this field is replaced by 'steps'

The sequence of actions in the workflow. Useful for identifying the presence of a PROJECT_DELETE step.

BlueprintDriverWorkflow.jobs ● [BlueprintDriverActionExecution!] deprecated list object

DEPRECATED

this field is replaced by 'steps'

The driver action execution records. NOTE: will not have a record for PROJECT_DELETE.

BlueprintDriverWorkflow.steps ● [BlueprintDriverWorkflowStep!]! non-null object

BlueprintDriverWorkflow.createdAt ● Time! non-null scalar

BlueprintDriverWorkflow.updatedAt ● Time! non-null scalar

Returned by

approveBlueprintDriverWorkflow mutation ● submitBlueprintDriverWorkflow mutation

Member Of

ProjectV3 object ● User object