feat: add workflow graph constraints fixtures

This commit is contained in:
Abhishek Kumar 2026-05-08 16:02:51 +05:30
parent 6d93be3ef6
commit 5a358d4d29
38 changed files with 447 additions and 49 deletions

View file

@ -0,0 +1,24 @@
{
"nodes": [
{
"id": "s",
"type": "startCall",
"position": {"x": -200, "y": 0},
"data": {"name": "Start", "prompt": "Greet the caller."}
},
{
"id": "e",
"type": "endCall",
"position": {"x": 0, "y": 0},
"data": {"name": "End", "prompt": "Say goodbye."}
}
],
"edges": [
{
"id": "ghost-e",
"source": "ghost-node",
"target": "e",
"data": {"label": "from nowhere", "condition": "always"}
}
]
}