Workflow Export/Import and Delete (#552)
This adds system database methods and Conductor endpoints for
"exporting" all information about a workflow (and optinoally its
children) to a string and later "importing" it from that string. This
allows adding a workflow "copy-paste" feature to the DBOS UI where you
can "copy" a workflow execution from a prod environment and "paste" it
into a dev environment to examine it there (for example to reproduce or
analyze bugs).
We also add a new `DBOS.delete_workflow` for use in development:
```python
DBOS.delete_workflow(
workflow_id: str, *, delete_children: bool = False
) -> None:
``` P
Peter Kraft committed
ba380761f43ca11ec66387ead4c342d36bf81e01
Parent: ae9e505
Committed by GitHub <noreply@github.com>
on 1/14/2026, 8:48:44 PM