Files
cloudlysis/runner/config/saga_on_event.json
Vlad Durnea 1298d9a3df
Some checks failed
ci / rust (push) Failing after 2m34s
ci / ui (push) Failing after 30s
Monorepo consolidation: workspace, shared types, transport plans, docker/swam assets
2026-03-30 11:40:42 +03:00

28 lines
593 B
JSON

{
"specVersion": "1.1",
"id": "noop_saga",
"name": "noop_saga",
"inputs": [
{ "name": "saga_state", "type": "Any" },
{ "name": "event", "type": "Any" }
],
"nodes": [
{
"id": "const",
"type": "Const",
"data": {
"value": {
"new_saga_state": {},
"work_items": [],
"schedules": []
}
}
},
{ "id": "output", "type": "Output", "data": {} }
],
"edges": [
{ "id": "e1", "source": "const", "sourceHandle": "out", "target": "output", "targetHandle": "value" }
],
"outputNodeId": "output"
}