OBJECT
ApprovalProcessSchema
link GraphQL Schema definition
- type ApprovalProcessSchema {
- # What starts the approval — a record event or a manual launch.
- : ApprovalProcessTrigger!
- # Condition deciding which records the approval applies to.
- : ProcessFilterNode!
- # Approver list and approval behaviour.
- : ApprovalProcessSettings!
- # Actions run when the approval is approved.
- : [ProcessNodeInterface!]!
- # Actions run when the approval is rejected.
- : [ProcessNodeInterface!]!
- }