🚀 1.47.0 is live! Learn more
GraphQL types for multi-step agent workflows
type workflow_templates { id: ID! name: String! description: String agent: ID! steps_json: JSON variables: [String] # Extracted from steps_json createdAt: Date! updatedAt: Date! RBAC: RBACData }
query { workflow_templateById(id: "workflow-123") { id name agent variables } }
mutation { runWorkflow( id: "workflow-123" variables: { customerName: "John Doe" orderId: "12345" } ) { result job metadata } }
mutation { upsertWorkflowSchedule( workflow: "workflow-123" schedule: "0 9 * * *" # Daily at 9 AM ) { status job } }
Was this page helpful?