Graph

NodeDescriptionInputsOutputs
argsProvides a named input argument. In compiled graphs, this becomes a CLI argument; in the editor, it outputs the default value.name Text, default Anyvalue Any
global_getReads a global variable by name. Resolves through node > graph-meta > settings tiers.name Textvalue Any
global_listOutputs all currently defined globals as a JSON object, merged across all tiers.globals Json
global_resetRemoves a node-level global override, reverting to the graph-meta or settings value.name Textreset Boolean
global_setSets a global variable that can be referenced via {{name}} in any text field. Overrides settings and graph-meta globals.name Text, value Anyvalue Any

args

Provides a named input argument. In compiled graphs, this becomes a CLI argument; in the editor, it outputs the default value.

Inputs:

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:

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:

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:

Output: value (Any) — passthrough of the assigned value

See also: global_get, global_list, global_reset