Graph
| Node | Description | Inputs | Outputs |
|---|---|---|---|
| args | Provides a named input argument. In compiled graphs, this becomes a CLI argument; in the editor, it outputs the default value. | name Text, default Any | value Any |
| global_get | Reads a global variable by name. Resolves through node > graph-meta > settings tiers. | name Text | value Any |
| global_list | Outputs all currently defined globals as a JSON object, merged across all tiers. | globals Json | |
| global_reset | Removes a node-level global override, reverting to the graph-meta or settings value. | name Text | reset Boolean |
| global_set | Sets a global variable that can be referenced via {{name}} in any text field. Overrides settings and graph-meta globals. | name Text, value Any | value Any |
args
Provides a named input argument. In compiled graphs, this becomes a CLI argument; in the editor, it outputs the default value.
Inputs:
name(Text) — argument name (used as the CLI flag)default(Any) — default value when the argument is not provided
Output: value (Any) — the resolved argument value
See also: utility/text, utility/number
global_get
Reads a global variable by name. Resolves through node > graph-meta > settings tiers.
Inputs:
name(Text) — global variable name to read
Output: value (Any) — the resolved global value, or null if not defined
See also: global_set, global_list
global_list
Outputs all currently defined globals as a JSON object, merged across all tiers.
Output: globals (Json) — merged globals from all tiers
See also: global_get, global_set
global_reset
Removes a node-level global override, reverting to the graph-meta or settings value.
Inputs:
name(Text) — global variable name to reset
Output: reset (Boolean) — true after the reset is applied
See also: global_set, global_get
global_set
Sets a global variable that can be referenced via {{name}} in any text field. Overrides settings and graph-meta globals.
Inputs:
name(Text) — global variable namevalue(Any) — value to assign
Output: value (Any) — passthrough of the assigned value
See also: global_get, global_list, global_reset