
Start Node
The Start node is the entry point where workflow execution begins. It provides access to system variables and passes them to subsequent nodes.Key Features
- Title: “Start” - Entry point of nodes
- Output handle: Connects to the first processing node in your workflow
- System Variables: Automatically provides access to:
sys.query- The user’s input querysys.user_id- The user identifiersys.files- Any uploaded files- Custom variables defined in your GIDR configuration
End Node
The End node is the exit point that collects the final output from your workflow and returns it to the user or calling system.Key Features
- Title: “End” - End node
- Input handle: Receives the final processed data from upstream nodes
- Output: Returns the workflow result to the user interface or API caller
Every workflow must have exactly one Start node and at least one End node. These nodes don’t have configuration panels - they serve as simple entry and exit points for your workflow logic.