Delete Workflow
Introduction
TheDeleteWorkflow mutation can be utilized to delete a workflow by workflow_id.
This operation includes deleting all components and models associated with this workflow. Once deleted, components and models are irretrievable.
DeleteWorkflow
Inputs
workflow_id: int The ID of workflow to delete
Outputs
success: bool true if deleted
Try It Out
Try out the DeleteWorkflow call:
from indico.queries import DeleteWorkflow
#set up client here
wf_to_delete = 123
client.call(DeleteWorkflow(workflow_id=wf_to_delete.))Updated about 12 hours ago
