Delete Workflow

Mutation to delete workflow given workflow id.

Introduction

TheDeleteWorkflow mutation can be utilized to delete a workflow by workflow_id.

🚧

Proceed with caution

This operation includes deleting all components and models associated with this workflow. Once deleted, components and models are irretrievable.

ListSubmissions

Inputs

πŸ“₯

DeleteWorkflow Inputs

workflow_id: int id of workflow to delete

Outputs

πŸ“€

DeleteWorkflow Outputs

success: bool 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.))