Node
Kind: Class
Domain: Graph, serialization, and replay
Canonical import: from cadflow import Node
Signature
class Node(op: 'str', args: 'tuple[object, ...]' = ()) -> None
Description
Node(op: 'str', args: 'tuple[object, ...]' = ())
Other public imports
from cadflow.graph import Node
Parameters
| Name | Type | Required | Default | Source description |
|---|---|---|---|---|
op | 'str' | yes | - | Not explicitly described in the source docstring. |
args | 'tuple[object, ...]' | no | () | Not explicitly described in the source docstring. |
Returns
Type: None
The source docstring does not declare additional return semantics.
Errors
The source docstring does not declare a narrower exception contract. Invalid types, values, ownership, paths, or backend state may still raise the corresponding public error.
Data fields
| Name | Type | Default |
|---|---|---|
op | 'str' | required |
args | 'tuple[object, ...]' | () |
Behavior and constraints
- Instances are immutable dataclass values; update workflows return a replacement value.
Import check
from cadflow import Node