Skip to main content

OrderfulStateMachineTransition

A single transition in an Orderful state machine configuration.

type OrderfulStateMachineTransition {
eventType: String!
fromState: String!
sideEffects: [String!]!
toState: String!
}

Fields

OrderfulStateMachineTransition.eventType ● String! non-null scalar

The friendly event type name (e.g., 'order_approved', 'order_shipped').

OrderfulStateMachineTransition.fromState ● String! non-null scalar

The source state for this transition.

OrderfulStateMachineTransition.sideEffects ● [String!]! non-null scalar

List of side effect names (e.g., '855', '856', '810').

OrderfulStateMachineTransition.toState ● String! non-null scalar

The target state for this transition.

Member Of

OrderfulStateMachineConfiguration object